
    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_2527fa6d799b1db7405bef05.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_081bde68f0be690f2b1f8ad9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.144531;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_014ba01cfc978f629e954148.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_25875cb82eda5c9f4831c57a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.932000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a24649565259643b5f529bdc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107910;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_690a864614a7ff62f6065a71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.109863;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_8be477af66121c83cfb1586d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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_7f592ef5d948ec5739cba075.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.870000;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_4054bb76b62ffbea3ebdc9ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.229980;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_810f203e9d9fff3264dc3fe6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.385000;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_80733b730ce9b6e7f435be64.woff2')format("woff");}.ffb{font-family:ffb;line-height:2.460000;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_4484b939b53b47e0ced9a2ed.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.596000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_79e72aeec988ff71c9f69914.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714309;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);}
.v3{vertical-align:-28.152000px;}
.v11{vertical-align:-20.922000px;}
.v6{vertical-align:-15.060000px;}
.v4{vertical-align:-13.392000px;}
.v5{vertical-align:-11.958000px;}
.v12{vertical-align:-9.954000px;}
.v14{vertical-align:-5.664000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:4.782000px;}
.v2{vertical-align:5.976000px;}
.v13{vertical-align:9.954000px;}
.ve{vertical-align:13.392000px;}
.v7{vertical-align:16.734000px;}
.v18{vertical-align:17.832000px;}
.vd{vertical-align:19.128000px;}
.v1{vertical-align:22.176000px;}
.v9{vertical-align:23.382000px;}
.vf{vertical-align:27.732000px;}
.v10{vertical-align:31.800000px;}
.vb{vertical-align:33.474000px;}
.v8{vertical-align:35.334000px;}
.v19{vertical-align:36.960000px;}
.va{vertical-align:52.074000px;}
.v15{vertical-align:67.620000px;}
.v16{vertical-align:101.094000px;}
.v17{vertical-align:108.018000px;}
.lsf{letter-spacing:0.000000px;}
.ls92{letter-spacing:0.000002px;}
.ls8d{letter-spacing:0.000014px;}
.lsc{letter-spacing:0.000022px;}
.ls47{letter-spacing:0.000029px;}
.ls4f{letter-spacing:0.000037px;}
.ls2a{letter-spacing:0.000059px;}
.ls5d{letter-spacing:0.000173px;}
.ls56{letter-spacing:0.000338px;}
.ls1b{letter-spacing:0.000477px;}
.ls15{letter-spacing:0.000616px;}
.ls4d{letter-spacing:0.000756px;}
.ls1{letter-spacing:0.000877px;}
.ls66{letter-spacing:0.001101px;}
.ls79{letter-spacing:0.001200px;}
.ls70{letter-spacing:0.001514px;}
.ls33{letter-spacing:0.002152px;}
.ls91{letter-spacing:0.002229px;}
.lsb{letter-spacing:0.002559px;}
.ls22{letter-spacing:0.002670px;}
.ls3a{letter-spacing:0.002850px;}
.ls96{letter-spacing:0.002889px;}
.ls7d{letter-spacing:0.003600px;}
.ls80{letter-spacing:0.003726px;}
.ls59{letter-spacing:0.004006px;}
.ls82{letter-spacing:0.004564px;}
.ls78{letter-spacing:0.717726px;}
.ls5c{letter-spacing:1.789776px;}
.ls8e{letter-spacing:1.795776px;}
.ls3f{letter-spacing:1.912265px;}
.ls11{letter-spacing:2.390451px;}
.lsd{letter-spacing:2.985667px;}
.ls39{letter-spacing:2.986291px;}
.ls0{letter-spacing:2.986384px;}
.ls45{letter-spacing:2.986478px;}
.ls3{letter-spacing:2.986661px;}
.ls35{letter-spacing:2.987424px;}
.ls36{letter-spacing:2.987722px;}
.ls1c{letter-spacing:2.987798px;}
.ls3c{letter-spacing:2.987808px;}
.ls14{letter-spacing:2.989200px;}
.ls3e{letter-spacing:2.990160px;}
.ls8a{letter-spacing:2.990400px;}
.ls85{letter-spacing:2.991168px;}
.ls38{letter-spacing:2.992291px;}
.ls2{letter-spacing:2.992661px;}
.ls34{letter-spacing:2.993136px;}
.ls4c{letter-spacing:4.302297px;}
.ls41{letter-spacing:4.302616px;}
.ls32{letter-spacing:5.256477px;}
.ls48{letter-spacing:7.169700px;}
.ls6d{letter-spacing:7.172550px;}
.ls1a{letter-spacing:7.174564px;}
.ls7c{letter-spacing:7.652670px;}
.ls7{letter-spacing:9.364531px;}
.ls5{letter-spacing:9.366188px;}
.ls6{letter-spacing:9.366249px;}
.ls4{letter-spacing:9.366743px;}
.ls8{letter-spacing:9.366836px;}
.ls42{letter-spacing:9.443136px;}
.ls6c{letter-spacing:10.165200px;}
.ls5b{letter-spacing:10.622889px;}
.ls74{letter-spacing:10.623308px;}
.ls55{letter-spacing:10.628889px;}
.ls75{letter-spacing:10.629308px;}
.ls6e{letter-spacing:11.429740px;}
.ls2f{letter-spacing:12.050791px;}
.ls58{letter-spacing:13.280889px;}
.ls4e{letter-spacing:13.284059px;}
.ls65{letter-spacing:13.286889px;}
.ls63{letter-spacing:13.288124px;}
.ls5a{letter-spacing:13.613798px;}
.ls54{letter-spacing:13.615200px;}
.ls73{letter-spacing:13.617456px;}
.ls51{letter-spacing:13.806059px;}
.ls84{letter-spacing:15.196862px;}
.ls8f{letter-spacing:15.350362px;}
.ls1e{letter-spacing:15.677798px;}
.ls53{letter-spacing:15.727200px;}
.ls5f{letter-spacing:15.935797px;}
.ls27{letter-spacing:15.938670px;}
.ls5e{letter-spacing:15.941797px;}
.ls69{letter-spacing:15.942059px;}
.ls2e{letter-spacing:15.972080px;}
.ls64{letter-spacing:16.267200px;}
.ls57{letter-spacing:16.271798px;}
.ls43{letter-spacing:16.271808px;}
.ls6a{letter-spacing:16.272797px;}
.ls83{letter-spacing:16.539168px;}
.ls50{letter-spacing:17.221200px;}
.ls6b{letter-spacing:17.636550px;}
.ls30{letter-spacing:18.124007px;}
.lsa{letter-spacing:18.345254px;}
.ls6f{letter-spacing:18.563798px;}
.ls95{letter-spacing:18.742006px;}
.ls76{letter-spacing:18.929136px;}
.ls77{letter-spacing:18.929722px;}
.ls9{letter-spacing:18.990835px;}
.ls68{letter-spacing:19.261200px;}
.ls90{letter-spacing:20.321797px;}
.ls71{letter-spacing:20.421456px;}
.ls61{letter-spacing:20.450889px;}
.ls3d{letter-spacing:20.456889px;}
.ls89{letter-spacing:20.693797px;}
.ls40{letter-spacing:21.688105px;}
.ls3b{letter-spacing:23.783136px;}
.ls31{letter-spacing:23.814659px;}
.ls37{letter-spacing:23.913385px;}
.ls52{letter-spacing:23.953200px;}
.ls60{letter-spacing:24.053762px;}
.ls7f{letter-spacing:24.417168px;}
.ls93{letter-spacing:24.478291px;}
.ls4b{letter-spacing:24.483727px;}
.ls4a{letter-spacing:24.486059px;}
.ls94{letter-spacing:26.170006px;}
.lse{letter-spacing:26.896216px;}
.ls8b{letter-spacing:27.181200px;}
.ls46{letter-spacing:27.455808px;}
.ls81{letter-spacing:28.743168px;}
.ls8c{letter-spacing:30.667200px;}
.ls7a{letter-spacing:31.683168px;}
.ls62{letter-spacing:32.411740px;}
.ls86{letter-spacing:35.090889px;}
.ls7b{letter-spacing:36.341136px;}
.ls87{letter-spacing:78.536889px;}
.ls72{letter-spacing:120.578889px;}
.ls1d{letter-spacing:333.035740px;}
.ls16{letter-spacing:390.791136px;}
.ls1f{letter-spacing:393.375456px;}
.ls12{letter-spacing:393.687168px;}
.ls26{letter-spacing:394.879920px;}
.ls2c{letter-spacing:396.518160px;}
.ls23{letter-spacing:396.551424px;}
.ls17{letter-spacing:400.260297px;}
.ls24{letter-spacing:406.055808px;}
.ls2b{letter-spacing:406.381200px;}
.ls28{letter-spacing:406.525200px;}
.ls18{letter-spacing:407.624669px;}
.ls20{letter-spacing:412.932756px;}
.ls25{letter-spacing:414.606477px;}
.ls10{letter-spacing:415.036862px;}
.ls2d{letter-spacing:422.640338px;}
.ls29{letter-spacing:424.314059px;}
.ls13{letter-spacing:424.792265px;}
.ls19{letter-spacing:424.935727px;}
.ls21{letter-spacing:433.352152px;}
.ls44{letter-spacing:776.267808px;}
.ls88{letter-spacing:843.088862px;}
.ls7e{letter-spacing:991.535722px;}
.ls67{letter-spacing:1021.409740px;}
.ls49{letter-spacing:1136.491200px;}
.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;}
}
.wsf{word-spacing:-34.108186px;}
.ws53{word-spacing:-31.609417px;}
.wsd7{word-spacing:-25.287613px;}
.ws10e{word-spacing:-24.680996px;}
.ws10c{word-spacing:-24.678803px;}
.wscd{word-spacing:-24.674996px;}
.ws118{word-spacing:-24.673818px;}
.ws112{word-spacing:-24.672803px;}
.ws11d{word-spacing:-24.437368px;}
.ws58{word-spacing:-24.436327px;}
.ws2{word-spacing:-24.230394px;}
.ws12b{word-spacing:-23.707162px;}
.ws52{word-spacing:-20.849782px;}
.ws121{word-spacing:-19.755836px;}
.ws148{word-spacing:-19.549123px;}
.wsfd{word-spacing:-18.506650px;}
.wsf7{word-spacing:-18.327322px;}
.ws147{word-spacing:-16.679878px;}
.wsf5{word-spacing:-15.637402px;}
.wsfe{word-spacing:-15.272666px;}
.ws1{word-spacing:-15.020262px;}
.ws2c{word-spacing:-14.011436px;}
.wsfc{word-spacing:-13.031081px;}
.ws8{word-spacing:-12.995488px;}
.ws1ab{word-spacing:-12.895818px;}
.ws19{word-spacing:-12.610310px;}
.ws1a8{word-spacing:-12.391818px;}
.wsb{word-spacing:-12.259940px;}
.ws0{word-spacing:-11.620260px;}
.ws131{word-spacing:-11.389818px;}
.ws1cc{word-spacing:-11.209184px;}
.ws12a{word-spacing:-11.153368px;}
.ws129{word-spacing:-10.673824px;}
.ws116{word-spacing:-10.116803px;}
.ws49{word-spacing:-10.061328px;}
.ws16f{word-spacing:-9.583818px;}
.ws175{word-spacing:-9.126803px;}
.ws130{word-spacing:-8.737818px;}
.ws5a{word-spacing:-8.736803px;}
.ws1af{word-spacing:-8.731818px;}
.ws1c8{word-spacing:-8.730803px;}
.ws4{word-spacing:-8.619679px;}
.ws135{word-spacing:-8.395818px;}
.ws6{word-spacing:-7.746970px;}
.ws13b{word-spacing:-7.431389px;}
.ws1a4{word-spacing:-7.129818px;}
.ws15c{word-spacing:-7.014803px;}
.ws12d{word-spacing:-6.671368px;}
.ws17b{word-spacing:-6.091818px;}
.ws142{word-spacing:-6.001718px;}
.ws15d{word-spacing:-4.800803px;}
.ws139{word-spacing:-4.779389px;}
.ws181{word-spacing:-4.753818px;}
.ws18e{word-spacing:-4.585818px;}
.ws18c{word-spacing:-4.357818px;}
.ws17c{word-spacing:-3.919818px;}
.ws1ca{word-spacing:-2.869236px;}
.ws168{word-spacing:-2.856803px;}
.wsc6{word-spacing:-2.821415px;}
.wsc9{word-spacing:-2.731946px;}
.wsc8{word-spacing:-2.725774px;}
.ws1ac{word-spacing:-2.677954px;}
.wsa{word-spacing:-2.661221px;}
.ws1c7{word-spacing:-2.630133px;}
.ws7{word-spacing:-2.597858px;}
.ws1e{word-spacing:-2.582312px;}
.wsad{word-spacing:-2.534492px;}
.ws144{word-spacing:-2.391030px;}
.ws127{word-spacing:-2.363368px;}
.ws1c4{word-spacing:-2.343209px;}
.wsee{word-spacing:-2.310803px;}
.ws9a{word-spacing:-2.247568px;}
.ws187{word-spacing:-2.199748px;}
.ws1b5{word-spacing:-2.104874px;}
.ws66{word-spacing:-2.104106px;}
.wse4{word-spacing:-2.056286px;}
.ws1ad{word-spacing:-2.008465px;}
.wsa1{word-spacing:-1.960645px;}
.ws1c5{word-spacing:-1.950803px;}
.ws191{word-spacing:-1.769362px;}
.ws8a{word-spacing:-1.721542px;}
.ws8b{word-spacing:-1.673721px;}
.wse{word-spacing:-1.645034px;}
.ws6f{word-spacing:-1.625900px;}
.ws7e{word-spacing:-1.578080px;}
.ws55{word-spacing:-1.338977px;}
.ws179{word-spacing:-1.291174px;}
.wse9{word-spacing:-1.291156px;}
.ws178{word-spacing:-1.243352px;}
.ws23{word-spacing:-1.243336px;}
.ws7f{word-spacing:-1.195515px;}
.ws16a{word-spacing:-1.147694px;}
.ws87{word-spacing:-1.099874px;}
.ws14b{word-spacing:-1.004233px;}
.ws1a9{word-spacing:-0.971049px;}
.ws1aa{word-spacing:-0.956412px;}
.wscc{word-spacing:-0.908591px;}
.ws98{word-spacing:-0.860771px;}
.ws150{word-spacing:-0.812950px;}
.wsa2{word-spacing:-0.717309px;}
.ws1b{word-spacing:-0.688618px;}
.ws2a{word-spacing:-0.573847px;}
.ws64{word-spacing:-0.478206px;}
.ws60{word-spacing:-0.430385px;}
.ws16d{word-spacing:-0.382565px;}
.ws16c{word-spacing:-0.286924px;}
.ws65{word-spacing:-0.239103px;}
.wse3{word-spacing:-0.191282px;}
.ws156{word-spacing:-0.176549px;}
.ws157{word-spacing:-0.143462px;}
.ws110{word-spacing:-0.100874px;}
.ws10f{word-spacing:-0.095641px;}
.ws54{word-spacing:-0.047821px;}
.ws9{word-spacing:-0.044353px;}
.ws1a{word-spacing:-0.043039px;}
.wsd5{word-spacing:-0.038257px;}
.ws11f{word-spacing:-0.035866px;}
.ws120{word-spacing:-0.029888px;}
.ws48{word-spacing:0.000000px;}
.wsa0{word-spacing:0.047821px;}
.ws25{word-spacing:0.095641px;}
.wsb0{word-spacing:0.143462px;}
.ws210{word-spacing:0.153026px;}
.wse2{word-spacing:0.239103px;}
.ws1cf{word-spacing:0.267796px;}
.wsa9{word-spacing:0.286924px;}
.ws119{word-spacing:0.334744px;}
.ws38{word-spacing:0.382565px;}
.ws39{word-spacing:0.430385px;}
.ws1b9{word-spacing:0.478206px;}
.ws115{word-spacing:0.526027px;}
.ws1e6{word-spacing:0.535592px;}
.ws136{word-spacing:0.573847px;}
.ws6e{word-spacing:0.621668px;}
.wsa7{word-spacing:0.669488px;}
.ws28{word-spacing:0.717309px;}
.ws173{word-spacing:0.717321px;}
.wsdb{word-spacing:0.765130px;}
.ws1bf{word-spacing:0.812950px;}
.ws76{word-spacing:0.860771px;}
.ws75{word-spacing:0.908591px;}
.ws221{word-spacing:0.918158px;}
.ws9f{word-spacing:0.956412px;}
.ws6c{word-spacing:1.004233px;}
.ws1f2{word-spacing:1.032928px;}
.ws111{word-spacing:1.052053px;}
.ws16e{word-spacing:1.099874px;}
.wsdf{word-spacing:1.147694px;}
.ws212{word-spacing:1.147698px;}
.ws91{word-spacing:1.243336px;}
.ws104{word-spacing:1.267126px;}
.ws5e{word-spacing:1.291156px;}
.ws183{word-spacing:1.338977px;}
.ws182{word-spacing:1.338984px;}
.ws1c0{word-spacing:1.355858px;}
.ws8c{word-spacing:1.386797px;}
.ws100{word-spacing:1.434618px;}
.ws5f{word-spacing:1.482439px;}
.ws92{word-spacing:1.530259px;}
.ws213{word-spacing:1.530264px;}
.ws174{word-spacing:1.530271px;}
.ws128{word-spacing:1.578080px;}
.wsf4{word-spacing:1.673721px;}
.wsf6{word-spacing:1.675126px;}
.ws96{word-spacing:1.721542px;}
.ws41{word-spacing:1.769362px;}
.ws146{word-spacing:1.817183px;}
.ws29{word-spacing:1.865003px;}
.ws109{word-spacing:1.910787px;}
.wsec{word-spacing:1.912815px;}
.ws1a6{word-spacing:1.912819px;}
.ws3{word-spacing:1.912824px;}
.ws1fc{word-spacing:1.912830px;}
.ws1a7{word-spacing:1.912845px;}
.wsda{word-spacing:1.912875px;}
.ws13a{word-spacing:1.921126px;}
.ws166{word-spacing:1.927126px;}
.ws143{word-spacing:1.932854px;}
.ws1ae{word-spacing:1.932926px;}
.ws159{word-spacing:1.960636px;}
.ws2b{word-spacing:1.960645px;}
.ws14{word-spacing:1.979776px;}
.ws2d{word-spacing:2.008465px;}
.ws199{word-spacing:2.027600px;}
.ws45{word-spacing:2.056286px;}
.ws18{word-spacing:2.065853px;}
.ws205{word-spacing:2.065856px;}
.ws70{word-spacing:2.104106px;}
.wse7{word-spacing:2.151927px;}
.ws228{word-spacing:2.218883px;}
.ws81{word-spacing:2.247568px;}
.ws134{word-spacing:2.253748px;}
.ws107{word-spacing:2.295389px;}
.ws1d5{word-spacing:2.371909px;}
.ws7c{word-spacing:2.391030px;}
.ws196{word-spacing:2.410166px;}
.ws149{word-spacing:2.438846px;}
.ws14a{word-spacing:2.438851px;}
.ws16b{word-spacing:2.471858px;}
.ws46{word-spacing:2.486671px;}
.ws176{word-spacing:2.534492px;}
.ws17d{word-spacing:2.582312px;}
.ws17e{word-spacing:2.582351px;}
.ws4b{word-spacing:2.677954px;}
.wsac{word-spacing:2.725774px;}
.ws42{word-spacing:2.773595px;}
.ws22a{word-spacing:2.792732px;}
.ws40{word-spacing:2.821415px;}
.ws18a{word-spacing:2.869236px;}
.ws18f{word-spacing:2.917057px;}
.ws138{word-spacing:2.964877px;}
.ws21a{word-spacing:2.984015px;}
.ws1c3{word-spacing:3.060518px;}
.ws21e{word-spacing:3.098785px;}
.ws9e{word-spacing:3.108339px;}
.wsd3{word-spacing:3.137041px;}
.ws8f{word-spacing:3.156160px;}
.ws203{word-spacing:3.175298px;}
.wsb1{word-spacing:3.203980px;}
.wsaf{word-spacing:3.251801px;}
.ws1ea{word-spacing:3.251811px;}
.wsd{word-spacing:3.281702px;}
.ws1da{word-spacing:3.290068px;}
.ws74{word-spacing:3.299621px;}
.ws32{word-spacing:3.313923px;}
.ws35{word-spacing:3.313941px;}
.ws36{word-spacing:3.313968px;}
.ws1c{word-spacing:3.313972px;}
.ws34{word-spacing:3.313981px;}
.ws33{word-spacing:3.313982px;}
.wsd2{word-spacing:3.328324px;}
.ws99{word-spacing:3.347442px;}
.ws37{word-spacing:3.357000px;}
.ws2f{word-spacing:3.357011px;}
.ws31{word-spacing:3.357031px;}
.ws20e{word-spacing:3.366581px;}
.wsab{word-spacing:3.395263px;}
.wsd9{word-spacing:3.395277px;}
.wsa4{word-spacing:3.443083px;}
.ws1a5{word-spacing:3.529126px;}
.ws162{word-spacing:3.538724px;}
.wsb3{word-spacing:3.586545px;}
.ws1f6{word-spacing:3.596120px;}
.wsbf{word-spacing:3.624951px;}
.wsbe{word-spacing:3.634366px;}
.ws194{word-spacing:3.634377px;}
.ws229{word-spacing:3.672634px;}
.ws69{word-spacing:3.682186px;}
.ws1d0{word-spacing:3.710890px;}
.ws12e{word-spacing:3.730007px;}
.ws22b{word-spacing:3.749147px;}
.ws1c2{word-spacing:3.825648px;}
.ws1f5{word-spacing:3.825660px;}
.ws1c1{word-spacing:3.835126px;}
.wscb{word-spacing:3.873469px;}
.ws1e1{word-spacing:3.940430px;}
.ws2e{word-spacing:3.969110px;}
.ws22c{word-spacing:3.978686px;}
.wsc7{word-spacing:4.016930px;}
.wsa3{word-spacing:4.112572px;}
.ws140{word-spacing:4.130611px;}
.ws21b{word-spacing:4.131713px;}
.ws123{word-spacing:4.160392px;}
.ws15b{word-spacing:4.188951px;}
.ws15a{word-spacing:4.208213px;}
.ws97{word-spacing:4.256033px;}
.ws155{word-spacing:4.303854px;}
.ws154{word-spacing:4.303866px;}
.wsc2{word-spacing:4.351675px;}
.ws227{word-spacing:4.361252px;}
.wsc3{word-spacing:4.399495px;}
.ws43{word-spacing:4.447316px;}
.ws3a{word-spacing:4.495136px;}
.ws204{word-spacing:4.552535px;}
.ws15{word-spacing:4.562092px;}
.ws3b{word-spacing:4.590778px;}
.ws1e5{word-spacing:4.590792px;}
.ws1fd{word-spacing:4.629049px;}
.ws151{word-spacing:4.638598px;}
.ws95{word-spacing:4.705562px;}
.ws193{word-spacing:4.727469px;}
.ws17f{word-spacing:4.734239px;}
.ws93{word-spacing:4.743818px;}
.wse6{word-spacing:4.759126px;}
.wse5{word-spacing:4.782060px;}
.ws1e7{word-spacing:4.782075px;}
.ws172{word-spacing:4.829881px;}
.wsa5{word-spacing:4.877701px;}
.ws125{word-spacing:4.925522px;}
.wse1{word-spacing:4.973342px;}
.ws10a{word-spacing:5.021163px;}
.ws216{word-spacing:5.049871px;}
.ws171{word-spacing:5.068984px;}
.ws170{word-spacing:5.068987px;}
.ws1b8{word-spacing:5.101126px;}
.ws1b7{word-spacing:5.116804px;}
.ws3f{word-spacing:5.164625px;}
.ws158{word-spacing:5.249858px;}
.ws77{word-spacing:5.260266px;}
.ws1df{word-spacing:5.279411px;}
.ws7d{word-spacing:5.308087px;}
.wsf2{word-spacing:5.355907px;}
.wsa8{word-spacing:5.403728px;}
.ws10d{word-spacing:5.419126px;}
.ws62{word-spacing:5.499369px;}
.ws20b{word-spacing:5.508950px;}
.ws108{word-spacing:5.547190px;}
.ws1bc{word-spacing:5.595010px;}
.ws106{word-spacing:5.642831px;}
.ws197{word-spacing:5.661977px;}
.wsd6{word-spacing:5.690454px;}
.ws79{word-spacing:5.690651px;}
.wsd4{word-spacing:5.700233px;}
.ws13{word-spacing:5.724134px;}
.ws73{word-spacing:5.738472px;}
.ws84{word-spacing:5.786293px;}
.ws198{word-spacing:5.815003px;}
.ws1bb{word-spacing:5.834113px;}
.wseb{word-spacing:5.881934px;}
.ws180{word-spacing:5.929754px;}
.ws177{word-spacing:5.929764px;}
.ws201{word-spacing:5.929773px;}
.ws10b{word-spacing:5.965126px;}
.ws7a{word-spacing:5.977575px;}
.ws1dd{word-spacing:6.044543px;}
.ws3d{word-spacing:6.073216px;}
.ws1f3{word-spacing:6.082799px;}
.ws13e{word-spacing:6.121037px;}
.ws16{word-spacing:6.154520px;}
.ws89{word-spacing:6.216678px;}
.ws215{word-spacing:6.235826px;}
.ws71{word-spacing:6.264499px;}
.ws18d{word-spacing:6.301126px;}
.ws18b{word-spacing:6.312319px;}
.ws1ed{word-spacing:6.388852px;}
.ws188{word-spacing:6.407960px;}
.ws189{word-spacing:6.408010px;}
.ws103{word-spacing:6.420519px;}
.ws1be{word-spacing:6.427109px;}
.ws78{word-spacing:6.455781px;}
.ws224{word-spacing:6.465365px;}
.ws101{word-spacing:6.498698px;}
.ws102{word-spacing:6.503602px;}
.ws72{word-spacing:6.551422px;}
.ws9d{word-spacing:6.694884px;}
.ws222{word-spacing:6.694905px;}
.ws3e{word-spacing:6.742705px;}
.wsce{word-spacing:6.785282px;}
.wscf{word-spacing:6.790525px;}
.ws63{word-spacing:6.838346px;}
.ws1d1{word-spacing:6.847931px;}
.ws9b{word-spacing:6.886166px;}
.ws21c{word-spacing:6.886188px;}
.wse8{word-spacing:6.933987px;}
.wsbb{word-spacing:6.981808px;}
.ws211{word-spacing:7.000958px;}
.ws190{word-spacing:7.029628px;}
.ws1b4{word-spacing:7.077449px;}
.ws1e2{word-spacing:7.115728px;}
.wsea{word-spacing:7.127279px;}
.ws137{word-spacing:7.220911px;}
.ws67{word-spacing:7.268731px;}
.ws1f1{word-spacing:7.268754px;}
.ws68{word-spacing:7.316552px;}
.ws169{word-spacing:7.364372px;}
.ws90{word-spacing:7.412193px;}
.ws13c{word-spacing:7.413274px;}
.ws11{word-spacing:7.445678px;}
.ws21{word-spacing:7.460014px;}
.ws1ff{word-spacing:7.498294px;}
.wsca{word-spacing:7.507834px;}
.ws1b6{word-spacing:7.555655px;}
.ws82{word-spacing:7.603475px;}
.ws1d8{word-spacing:7.613063px;}
.ws11a{word-spacing:7.651296px;}
.ws1e4{word-spacing:7.689577px;}
.ws105{word-spacing:7.699117px;}
.ws186{word-spacing:7.699123px;}
.ws17{word-spacing:7.789987px;}
.wsb4{word-spacing:7.794758px;}
.ws167{word-spacing:7.794769px;}
.ws83{word-spacing:7.842578px;}
.ws1ec{word-spacing:7.842603px;}
.ws1d2{word-spacing:7.880860px;}
.wsb7{word-spacing:7.890399px;}
.ws1b3{word-spacing:7.938174px;}
.ws1b0{word-spacing:7.938191px;}
.ws1b2{word-spacing:7.938220px;}
.ws1b1{word-spacing:7.938234px;}
.ws5c{word-spacing:8.033861px;}
.ws8e{word-spacing:8.081681px;}
.ws5d{word-spacing:8.129502px;}
.ws164{word-spacing:8.167126px;}
.ws163{word-spacing:8.177221px;}
.ws165{word-spacing:8.177323px;}
.ws1d6{word-spacing:8.186912px;}
.wsaa{word-spacing:8.225143px;}
.ws214{word-spacing:8.263426px;}
.wsba{word-spacing:8.272964px;}
.ws206{word-spacing:8.301682px;}
.ws11e{word-spacing:8.320784px;}
.ws1f0{word-spacing:8.339939px;}
.wsed{word-spacing:8.354996px;}
.wsef{word-spacing:8.368605px;}
.ws1fa{word-spacing:8.378195px;}
.ws22f{word-spacing:8.416452px;}
.ws1ce{word-spacing:8.454709px;}
.ws24{word-spacing:8.464246px;}
.ws1e8{word-spacing:8.492965px;}
.wsb8{word-spacing:8.559887px;}
.ws14f{word-spacing:8.559899px;}
.ws14e{word-spacing:8.575126px;}
.wsf8{word-spacing:8.607708px;}
.ws1e0{word-spacing:8.645992px;}
.wsb5{word-spacing:8.703349px;}
.ws9c{word-spacing:8.751170px;}
.ws219{word-spacing:8.760761px;}
.ws1fe{word-spacing:8.875531px;}
.ws10{word-spacing:8.908990px;}
.ws6d{word-spacing:8.942452px;}
.ws8d{word-spacing:8.990273px;}
.wsb2{word-spacing:9.038093px;}
.ws1f7{word-spacing:9.066814px;}
.ws1ba{word-spacing:9.085914px;}
.ws44{word-spacing:9.181555px;}
.ws1de{word-spacing:9.219841px;}
.wsf9{word-spacing:9.277196px;}
.ws1a3{word-spacing:9.283126px;}
.ws88{word-spacing:9.372838px;}
.ws14c{word-spacing:9.420658px;}
.wsae{word-spacing:9.468479px;}
.ws85{word-spacing:9.659761px;}
.wsb6{word-spacing:9.755402px;}
.ws1d3{word-spacing:9.755433px;}
.ws22d{word-spacing:9.793690px;}
.ws6a{word-spacing:9.803223px;}
.ws4d{word-spacing:9.851044px;}
.ws226{word-spacing:9.984973px;}
.ws11c{word-spacing:9.994505px;}
.ws17a{word-spacing:10.042326px;}
.ws1db{word-spacing:10.061486px;}
.ws1d4{word-spacing:10.176256px;}
.wsb9{word-spacing:10.185788px;}
.ws202{word-spacing:10.214512px;}
.wsc4{word-spacing:10.233608px;}
.ws200{word-spacing:10.252769px;}
.wsc5{word-spacing:10.281429px;}
.ws185{word-spacing:10.329250px;}
.ws1f8{word-spacing:10.367539px;}
.ws15e{word-spacing:10.377070px;}
.wsd8{word-spacing:10.424891px;}
.wsdd{word-spacing:10.472711px;}
.wsdc{word-spacing:10.476926px;}
.wsde{word-spacing:10.477126px;}
.ws132{word-spacing:10.577579px;}
.wsa6{word-spacing:10.616173px;}
.ws223{word-spacing:10.635335px;}
.ws1a2{word-spacing:10.759635px;}
.ws80{word-spacing:10.807456px;}
.ws141{word-spacing:10.855276px;}
.ws13f{word-spacing:10.863496px;}
.ws1ef{word-spacing:10.864874px;}
.ws47{word-spacing:10.903097px;}
.ws192{word-spacing:11.190020px;}
.ws22e{word-spacing:11.209184px;}
.ws20a{word-spacing:11.247440px;}
.ws1eb{word-spacing:11.285697px;}
.wsbd{word-spacing:11.381303px;}
.ws61{word-spacing:11.476944px;}
.ws208{word-spacing:11.591750px;}
.ws217{word-spacing:11.630006px;}
.ws20d{word-spacing:11.668263px;}
.ws225{word-spacing:11.783033px;}
.ws207{word-spacing:11.859546px;}
.ws1fb{word-spacing:11.897803px;}
.ws1c6{word-spacing:11.907329px;}
.ws117{word-spacing:12.146432px;}
.ws3c{word-spacing:12.242074px;}
.ws11b{word-spacing:12.289894px;}
.ws12{word-spacing:12.309040px;}
.ws1c9{word-spacing:12.385535px;}
.ws1ee{word-spacing:12.395138px;}
.ws1e9{word-spacing:12.662935px;}
.wsc0{word-spacing:12.768100px;}
.wsc1{word-spacing:12.815921px;}
.ws6b{word-spacing:12.911562px;}
.ws20{word-spacing:12.959383px;}
.wsd0{word-spacing:13.246306px;}
.ws22{word-spacing:13.341947px;}
.wsf0{word-spacing:13.437589px;}
.wsf1{word-spacing:13.453126px;}
.ws26{word-spacing:13.485409px;}
.ws21d{word-spacing:13.504580px;}
.wsfa{word-spacing:13.575571px;}
.ws113{word-spacing:13.581050px;}
.wsfb{word-spacing:13.581571px;}
.ws114{word-spacing:13.585126px;}
.ws14d{word-spacing:13.676692px;}
.ws1f{word-spacing:13.772333px;}
.ws27{word-spacing:13.915795px;}
.ws86{word-spacing:14.011436px;}
.wsbc{word-spacing:14.250539px;}
.ws1d9{word-spacing:14.269712px;}
.ws145{word-spacing:14.298359px;}
.ws7b{word-spacing:14.394001px;}
.ws21f{word-spacing:14.460995px;}
.wsd1{word-spacing:14.499251px;}
.ws1cb{word-spacing:14.690534px;}
.ws1f4{word-spacing:15.226127px;}
.ws195{word-spacing:15.417410px;}
.ws1e3{word-spacing:15.455666px;}
.ws1d7{word-spacing:15.493923px;}
.ws5{word-spacing:15.876439px;}
.ws30{word-spacing:15.881243px;}
.wsc{word-spacing:15.914746px;}
.ws160{word-spacing:16.236845px;}
.ws124{word-spacing:16.238534px;}
.ws20f{word-spacing:16.259055px;}
.ws218{word-spacing:16.909417px;}
.ws12f{word-spacing:17.406698px;}
.ws1bd{word-spacing:17.598036px;}
.ws184{word-spacing:18.171828px;}
.ws153{word-spacing:18.409126px;}
.ws152{word-spacing:18.410931px;}
.ws1cd{word-spacing:18.669221px;}
.ws1f9{word-spacing:18.860504px;}
.wsf3{word-spacing:19.331100px;}
.ws220{word-spacing:19.396096px;}
.ws15f{word-spacing:21.205453px;}
.ws161{word-spacing:21.205753px;}
.ws13d{word-spacing:21.357465px;}
.ws1dc{word-spacing:22.800934px;}
.ws1d{word-spacing:23.862479px;}
.ws20c{word-spacing:28.003831px;}
.ws209{word-spacing:31.829491px;}
.ws4a{word-spacing:54.754587px;}
.ws19a{word-spacing:80.836196px;}
.ws19f{word-spacing:81.004757px;}
.ws19e{word-spacing:85.678757px;}
.ws19c{word-spacing:85.694784px;}
.ws1a0{word-spacing:101.968757px;}
.ws19b{word-spacing:107.194993px;}
.ws1a1{word-spacing:128.733459px;}
.ws19d{word-spacing:155.730673px;}
.wsff{word-spacing:181.680593px;}
.ws94{word-spacing:257.849484px;}
.ws57{word-spacing:316.300282px;}
.ws4c{word-spacing:317.004632px;}
.ws4f{word-spacing:317.387197px;}
.ws56{word-spacing:345.566611px;}
.ws50{word-spacing:351.244182px;}
.ws51{word-spacing:357.843425px;}
.ws5b{word-spacing:361.908176px;}
.ws59{word-spacing:365.484518px;}
.ws4e{word-spacing:370.277360px;}
.ws122{word-spacing:625.434412px;}
.ws133{word-spacing:970.631579px;}
.ws12c{word-spacing:979.050176px;}
.ws126{word-spacing:1053.038534px;}
.wse0{word-spacing:1258.459492px;}
._3{margin-left:-18.829440px;}
._2{margin-left:-2.990748px;}
._13{width:1.004233px;}
._12{width:2.869236px;}
._35{width:3.903508px;}
._26{width:5.262536px;}
._2a{width:7.333652px;}
._2b{width:8.338756px;}
._1{width:10.540240px;}
._39{width:12.269018px;}
._25{width:14.223290px;}
._0{width:15.622794px;}
._16{width:16.926498px;}
._40{width:18.392001px;}
._24{width:20.218420px;}
._34{width:22.292099px;}
._23{width:23.910300px;}
._27{width:25.638975px;}
._28{width:28.007321px;}
._37{width:29.620383px;}
._4{width:31.896685px;}
._29{width:34.432979px;}
._38{width:39.406354px;}
._41{width:55.892893px;}
._3d{width:92.048738px;}
._32{width:96.597915px;}
._3f{width:106.735914px;}
._21{width:117.141709px;}
._3a{width:123.172151px;}
._33{width:134.204153px;}
._1d{width:138.527149px;}
._1b{width:142.620605px;}
._3b{width:145.586073px;}
._3e{width:160.954628px;}
._1a{width:164.465123px;}
._8{width:185.448287px;}
._31{width:198.475241px;}
._3c{width:206.700410px;}
._1f{width:215.384658px;}
._2f{width:225.063578px;}
._18{width:243.694542px;}
._2d{width:268.178766px;}
._1e{width:270.971498px;}
._6{width:278.172430px;}
._30{width:302.647963px;}
._b{width:320.589302px;}
._14{width:323.412593px;}
._15{width:327.190420px;}
._c{width:328.288419px;}
._7{width:330.249064px;}
._e{width:338.856772px;}
._10{width:345.934220px;}
._d{width:354.446287px;}
._f{width:363.245278px;}
._5{width:366.497078px;}
._11{width:375.152607px;}
._a{width:381.751850px;}
._9{width:393.515717px;}
._2e{width:413.630359px;}
._2c{width:455.138770px;}
._1c{width:601.470265px;}
._19{width:626.796134px;}
._17{width:662.221746px;}
._22{width:711.687530px;}
._20{width:722.169838px;}
._36{width:1251.418462px;}
.fc2{color:rgb(0,128,172);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fs7{font-size:26.779200px;}
.fsd{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fsc{font-size:38.256000px;}
.fs8{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs0{font-size:43.038000px;}
.fsa{font-size:43.038600px;}
.fs6{font-size:44.353200px;}
.fs1{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fs4{font-size:63.362400px;}
.fs3{font-size:80.697600px;}
.fs2{font-size:83.686200px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y4d{bottom:47.430000px;}
.y133{bottom:72.889500px;}
.y134{bottom:77.074500px;}
.y5{bottom:79.140000px;}
.y86{bottom:80.236500px;}
.y132{bottom:81.258000px;}
.y16f{bottom:84.538500px;}
.y16d{bottom:92.907000px;}
.y30c{bottom:93.088500px;}
.y4{bottom:93.495000px;}
.y242{bottom:95.371500px;}
.y238{bottom:95.460000px;}
.y20e{bottom:95.754000px;}
.y288{bottom:95.784000px;}
.yc7{bottom:95.895000px;}
.y1a6{bottom:96.013500px;}
.y1e3{bottom:96.156000px;}
.y152{bottom:96.159000px;}
.y28c{bottom:96.241500px;}
.y24a{bottom:96.798000px;}
.y85{bottom:97.515000px;}
.y261{bottom:97.761000px;}
.y16e{bottom:102.960000px;}
.y101{bottom:104.775000px;}
.y3{bottom:105.630000px;}
.y30b{bottom:105.711000px;}
.y241{bottom:110.506500px;}
.y237{bottom:110.683500px;}
.y20d{bottom:111.270000px;}
.y287{bottom:111.331500px;}
.yc6{bottom:111.553500px;}
.y1a5{bottom:111.792000px;}
.y1e2{bottom:112.077000px;}
.y151{bottom:112.081500px;}
.y131{bottom:112.224000px;}
.y84{bottom:114.793500px;}
.y249{bottom:115.102500px;}
.y260{bottom:115.285500px;}
.y2c2{bottom:116.092500px;}
.y16c{bottom:117.042000px;}
.y30a{bottom:118.561500px;}
.y100{bottom:120.346500px;}
.y16a{bottom:125.410500px;}
.y240{bottom:125.643000px;}
.y236{bottom:125.907000px;}
.y20c{bottom:126.787500px;}
.y286{bottom:126.879000px;}
.yc5{bottom:127.212000px;}
.y1a4{bottom:127.569000px;}
.y130{bottom:127.998000px;}
.y150{bottom:128.005500px;}
.y309{bottom:131.184000px;}
.y248{bottom:131.664000px;}
.y83{bottom:132.072000px;}
.y25f{bottom:132.810000px;}
.y4b{bottom:134.064000px;}
.y16b{bottom:135.463500px;}
.yff{bottom:135.919500px;}
.y23f{bottom:140.778000px;}
.y235{bottom:141.129000px;}
.y285{bottom:142.426500px;}
.yc4{bottom:142.870500px;}
.y1a3{bottom:143.346000px;}
.y12f{bottom:143.772000px;}
.y1e1{bottom:143.917500px;}
.y308{bottom:144.036000px;}
.y14f{bottom:144.406500px;}
.y247{bottom:148.225500px;}
.y169{bottom:148.317000px;}
.y25e{bottom:150.334500px;}
.y20b{bottom:150.922500px;}
.yfe{bottom:151.491000px;}
.y2c1{bottom:154.435500px;}
.y23e{bottom:155.914500px;}
.y234{bottom:156.352500px;}
.y307{bottom:156.658500px;}
.y167{bottom:156.685500px;}
.y284{bottom:157.974000px;}
.yc3{bottom:158.529000px;}
.y39{bottom:159.289500px;}
.y1a2{bottom:159.312000px;}
.y12e{bottom:159.544500px;}
.y246{bottom:164.788500px;}
.y168{bottom:165.519000px;}
.y25d{bottom:167.859000px;}
.y306{bottom:169.510500px;}
.y2c0{bottom:170.623500px;}
.y23d{bottom:171.049500px;}
.y233{bottom:171.591000px;}
.y283{bottom:173.523000px;}
.y38{bottom:173.635500px;}
.y20a{bottom:174.165000px;}
.yc2{bottom:174.187500px;}
.y12d{bottom:175.498500px;}
.y1e0{bottom:177.363000px;}
.yfd{bottom:178.780500px;}
.y14e{bottom:179.035500px;}
.y245{bottom:181.350000px;}
.y166{bottom:181.360500px;}
.y305{bottom:182.133000px;}
.y25c{bottom:185.383500px;}
.y23c{bottom:186.184500px;}
.y2bf{bottom:186.811500px;}
.y232{bottom:187.282500px;}
.y282{bottom:189.070500px;}
.y164{bottom:189.729000px;}
.yc1{bottom:189.846000px;}
.y37{bottom:191.643000px;}
.y1a1{bottom:191.904000px;}
.y82{bottom:193.840500px;}
.yfc{bottom:194.353500px;}
.y14d{bottom:194.958000px;}
.y304{bottom:194.985000px;}
.y244{bottom:197.911500px;}
.y165{bottom:198.562500px;}
.y23b{bottom:201.321000px;}
.y209{bottom:202.783500px;}
.y2be{bottom:202.999500px;}
.y281{bottom:204.618000px;}
.yc0{bottom:205.504500px;}
.y1a0{bottom:207.681000px;}
.y303{bottom:207.837000px;}
.y12c{bottom:208.035000px;}
.yfb{bottom:209.925000px;}
.y14c{bottom:210.880500px;}
.y81{bottom:211.026000px;}
.y1df{bottom:211.954500px;}
.y163{bottom:214.105500px;}
.y243{bottom:214.474500px;}
.y231{bottom:216.793500px;}
.y208{bottom:218.299500px;}
.y280{bottom:220.165500px;}
.y302{bottom:220.459500px;}
.ybf{bottom:221.164500px;}
.y161{bottom:222.474000px;}
.y19f{bottom:223.459500px;}
.y12b{bottom:223.809000px;}
.yfa{bottom:225.498000px;}
.y14b{bottom:226.804500px;}
.y1de{bottom:227.874000px;}
.y80{bottom:228.211500px;}
.y23a{bottom:231.036000px;}
.y162{bottom:231.307500px;}
.y230{bottom:232.015500px;}
.y301{bottom:233.310000px;}
.y207{bottom:233.817000px;}
.y27f{bottom:235.713000px;}
.ybe{bottom:236.823000px;}
.y2bd{bottom:238.857000px;}
.y19e{bottom:239.236500px;}
.y12a{bottom:239.581500px;}
.y4a{bottom:239.742000px;}
.y25b{bottom:240.117000px;}
.y36{bottom:240.130500px;}
.yf9{bottom:241.551000px;}
.y14a{bottom:242.727000px;}
.y1dd{bottom:243.795000px;}
.y7f{bottom:245.397000px;}
.y300{bottom:245.932500px;}
.y22f{bottom:247.239000px;}
.y206{bottom:249.334500px;}
.y27e{bottom:251.260500px;}
.ybd{bottom:252.481500px;}
.y160{bottom:252.943500px;}
.y25a{bottom:252.969000px;}
.y19d{bottom:255.013500px;}
.y129{bottom:255.355500px;}
.y49{bottom:256.146000px;}
.y35{bottom:256.354500px;}
.yf8{bottom:257.122500px;}
.y149{bottom:258.649500px;}
.y2ff{bottom:258.784500px;}
.y22e{bottom:262.462500px;}
.y7e{bottom:262.582500px;}
.y205{bottom:264.852000px;}
.y239{bottom:265.027500px;}
.y1dc{bottom:265.191000px;}
.y27d{bottom:266.809500px;}
.ybc{bottom:268.140000px;}
.y15f{bottom:269.617500px;}
.y259{bottom:270.792000px;}
.y128{bottom:271.129500px;}
.y2fe{bottom:271.636500px;}
.y48{bottom:272.550000px;}
.y34{bottom:272.580000px;}
.y1db{bottom:273.559500px;}
.y148{bottom:274.573500px;}
.y2bc{bottom:277.200000px;}
.y22d{bottom:277.686000px;}
.y7d{bottom:279.768000px;}
.y204{bottom:280.368000px;}
.y27c{bottom:282.357000px;}
.y258{bottom:283.644000px;}
.ybb{bottom:283.798500px;}
.y2fd{bottom:284.488500px;}
.yf7{bottom:285.009000px;}
.y15e{bottom:286.290000px;}
.y19c{bottom:287.173500px;}
.y33{bottom:288.804000px;}
.y47{bottom:288.954000px;}
.y147{bottom:290.496000px;}
.y22c{bottom:292.909500px;}
.y2bb{bottom:293.388000px;}
.y203{bottom:295.885500px;}
.y257{bottom:296.496000px;}
.y7c{bottom:296.953500px;}
.y2fc{bottom:297.111000px;}
.y27b{bottom:297.904500px;}
.yba{bottom:299.457000px;}
.yf6{bottom:300.580500px;}
.y1da{bottom:302.886000px;}
.y15d{bottom:302.964000px;}
.y127{bottom:303.253500px;}
.y32{bottom:305.028000px;}
.y46{bottom:305.359500px;}
.y22b{bottom:308.133000px;}
.y146{bottom:308.944500px;}
.y2ba{bottom:309.576000px;}
.y2fb{bottom:309.963000px;}
.y202{bottom:311.403000px;}
.y27a{bottom:313.452000px;}
.y7b{bottom:314.139000px;}
.y256{bottom:314.319000px;}
.yb9{bottom:315.115500px;}
.yf5{bottom:316.153500px;}
.y145{bottom:317.313000px;}
.y1d9{bottom:318.807000px;}
.y15c{bottom:319.638000px;}
.y19b{bottom:319.765500px;}
.y31{bottom:321.253500px;}
.y45{bottom:321.763500px;}
.y2fa{bottom:322.815000px;}
.y22a{bottom:323.355000px;}
.y2b9{bottom:325.764000px;}
.y201{bottom:326.920500px;}
.y279{bottom:328.999500px;}
.y255{bottom:330.370500px;}
.yb8{bottom:330.774000px;}
.y7a{bottom:331.324500px;}
.yf4{bottom:331.725000px;}
.y1d8{bottom:334.726500px;}
.y19a{bottom:335.544000px;}
.y2f9{bottom:335.667000px;}
.y126{bottom:335.790000px;}
.y15b{bottom:336.312000px;}
.y30{bottom:337.477500px;}
.y44{bottom:338.167500px;}
.y229{bottom:338.593500px;}
.y2b8{bottom:341.952000px;}
.y254{bottom:343.222500px;}
.y278{bottom:344.548500px;}
.y144{bottom:345.399000px;}
.yb7{bottom:346.434000px;}
.yf3{bottom:347.298000px;}
.y2f8{bottom:348.288000px;}
.y79{bottom:348.510000px;}
.y1d7{bottom:350.647500px;}
.y199{bottom:351.321000px;}
.y125{bottom:351.564000px;}
.y346{bottom:352.645500px;}
.y15a{bottom:352.986000px;}
.y2f{bottom:353.701500px;}
.y43{bottom:354.571500px;}
.y253{bottom:356.074500px;}
.y200{bottom:357.780000px;}
.y2b7{bottom:358.141500px;}
.y277{bottom:360.096000px;}
.y2f7{bottom:361.140000px;}
.y143{bottom:361.321500px;}
.yb6{bottom:362.092500px;}
.yf2{bottom:362.869500px;}
.y345{bottom:365.497500px;}
.y78{bottom:365.695500px;}
.y1d6{bottom:367.026000px;}
.y198{bottom:367.098000px;}
.y124{bottom:367.336500px;}
.y228{bottom:368.104500px;}
.y252{bottom:368.926500px;}
.y159{bottom:369.658500px;}
.y2e{bottom:369.927000px;}
.y42{bottom:370.975500px;}
.y2f6{bottom:373.992000px;}
.y2b6{bottom:374.329500px;}
.y276{bottom:375.643500px;}
.y142{bottom:377.244000px;}
.yb5{bottom:377.751000px;}
.y344{bottom:378.349500px;}
.yf1{bottom:378.442500px;}
.y251{bottom:381.777000px;}
.y197{bottom:382.876500px;}
.y77{bottom:382.881000px;}
.y1d5{bottom:382.947000px;}
.y123{bottom:383.110500px;}
.y227{bottom:383.328000px;}
.y2d{bottom:386.151000px;}
.y158{bottom:386.332500px;}
.y2f5{bottom:386.844000px;}
.y41{bottom:387.379500px;}
.y1ff{bottom:388.465500px;}
.y2b5{bottom:390.517500px;}
.y275{bottom:391.191000px;}
.y343{bottom:391.200000px;}
.y358{bottom:391.201500px;}
.yb4{bottom:393.409500px;}
.yf0{bottom:394.014000px;}
.y250{bottom:394.629000px;}
.y141{bottom:395.568000px;}
.y226{bottom:398.551500px;}
.y196{bottom:398.653500px;}
.y1d4{bottom:398.866500px;}
.y122{bottom:398.884500px;}
.y2f4{bottom:399.466500px;}
.y76{bottom:400.066500px;}
.y2c{bottom:402.376500px;}
.y40{bottom:403.785000px;}
.y140{bottom:403.936500px;}
.y1fe{bottom:403.983000px;}
.y342{bottom:404.052000px;}
.y357{bottom:404.053500px;}
.y157{bottom:404.986500px;}
.y2b4{bottom:406.705500px;}
.y274{bottom:406.738500px;}
.y28b{bottom:407.034000px;}
.y24f{bottom:407.481000px;}
.yb3{bottom:409.068000px;}
.yef{bottom:409.587000px;}
.y2f3{bottom:412.318500px;}
.y225{bottom:413.773500px;}
.y195{bottom:414.604500px;}
.y121{bottom:414.657000px;}
.y1d3{bottom:415.246500px;}
.y341{bottom:416.904000px;}
.y75{bottom:417.253500px;}
.y2b{bottom:418.600500px;}
.y1fd{bottom:419.500500px;}
.y3f{bottom:420.189000px;}
.y24e{bottom:420.333000px;}
.y273{bottom:422.286000px;}
.y2b3{bottom:422.895000px;}
.yb2{bottom:424.726500px;}
.y2f2{bottom:424.941000px;}
.yee{bottom:425.158500px;}
.y224{bottom:428.997000px;}
.y340{bottom:429.756000px;}
.y194{bottom:430.381500px;}
.y120{bottom:430.431000px;}
.y1d2{bottom:431.166000px;}
.y13f{bottom:431.304000px;}
.y24d{bottom:433.185000px;}
.y74{bottom:434.439000px;}
.y2a{bottom:434.824500px;}
.y1fc{bottom:435.018000px;}
.y3e{bottom:436.593000px;}
.y2f1{bottom:437.793000px;}
.y272{bottom:437.835000px;}
.y2b2{bottom:439.083000px;}
.yb1{bottom:440.385000px;}
.yed{bottom:440.731500px;}
.y33f{bottom:442.608000px;}
.y223{bottom:444.220500px;}
.y193{bottom:446.160000px;}
.y11f{bottom:446.205000px;}
.y1d1{bottom:447.087000px;}
.y13e{bottom:447.226500px;}
.y156{bottom:450.123000px;}
.y1fb{bottom:450.534000px;}
.y2f0{bottom:450.643500px;}
.y29{bottom:451.050000px;}
.y73{bottom:451.624500px;}
.y3d{bottom:452.997000px;}
.y271{bottom:453.382500px;}
.y2b1{bottom:455.271000px;}
.y33e{bottom:455.460000px;}
.yb0{bottom:456.043500px;}
.yec{bottom:456.303000px;}
.y222{bottom:459.444000px;}
.y192{bottom:461.937000px;}
.y11e{bottom:462.144000px;}
.y2ef{bottom:463.266000px;}
.y13d{bottom:463.614000px;}
.y1fa{bottom:466.051500px;}
.y24c{bottom:466.228500px;}
.y155{bottom:466.797000px;}
.y28{bottom:467.274000px;}
.y1cf{bottom:467.974500px;}
.y1d0{bottom:468.247500px;}
.y33d{bottom:468.312000px;}
.y72{bottom:468.810000px;}
.y270{bottom:468.930000px;}
.y3c{bottom:469.401000px;}
.yaf{bottom:471.703500px;}
.yeb{bottom:471.876000px;}
.y1ce{bottom:472.432500px;}
.y2b0{bottom:472.453500px;}
.y221{bottom:474.682500px;}
.y2ee{bottom:476.118000px;}
.y11d{bottom:477.916500px;}
.y13c{bottom:479.536500px;}
.y33c{bottom:481.164000px;}
.y1f9{bottom:481.569000px;}
.y27{bottom:483.498000px;}
.y26f{bottom:484.477500px;}
.y3b{bottom:485.806500px;}
.y71{bottom:485.995500px;}
.yae{bottom:487.362000px;}
.yea{bottom:487.462500px;}
.y2af{bottom:488.641500px;}
.y2ed{bottom:488.970000px;}
.y154{bottom:491.112000px;}
.y11c{bottom:493.690500px;}
.y33b{bottom:494.014500px;}
.y356{bottom:494.016000px;}
.y191{bottom:494.097000px;}
.y13b{bottom:495.459000px;}
.y1f8{bottom:497.085000px;}
.y153{bottom:499.480500px;}
.y1cd{bottom:499.945500px;}
.y26e{bottom:500.025000px;}
.y2ec{bottom:501.592500px;}
.y3a{bottom:502.210500px;}
.yad{bottom:503.020500px;}
.y70{bottom:503.181000px;}
.y220{bottom:504.192000px;}
.y2ae{bottom:504.829500px;}
.y33a{bottom:506.866500px;}
.y355{bottom:506.868000px;}
.y11b{bottom:509.464500px;}
.y13a{bottom:511.383000px;}
.y1f7{bottom:512.602500px;}
.y2eb{bottom:514.444500px;}
.y26d{bottom:515.572500px;}
.y1cc{bottom:515.865000px;}
.ye9{bottom:518.368500px;}
.y26{bottom:518.614500px;}
.yac{bottom:518.679000px;}
.y21f{bottom:519.415500px;}
.y339{bottom:519.718500px;}
.y6f{bottom:520.366500px;}
.y2ad{bottom:521.019000px;}
.y11a{bottom:525.237000px;}
.y190{bottom:526.689000px;}
.y2ea{bottom:527.067000px;}
.y139{bottom:527.305500px;}
.y1f6{bottom:528.120000px;}
.y26c{bottom:531.121500px;}
.y1cb{bottom:531.786000px;}
.y338{bottom:532.570500px;}
.ye8{bottom:533.941500px;}
.yab{bottom:534.337500px;}
.y21e{bottom:534.639000px;}
.y2ac{bottom:537.207000px;}
.y6e{bottom:537.552000px;}
.y2e9{bottom:539.919000px;}
.y119{bottom:541.011000px;}
.y18f{bottom:542.466000px;}
.y1f5{bottom:543.637500px;}
.y337{bottom:545.422500px;}
.y26b{bottom:546.669000px;}
.y1ca{bottom:548.179500px;}
.y21d{bottom:549.862500px;}
.yaa{bottom:549.996000px;}
.y2e8{bottom:552.771000px;}
.y2ab{bottom:553.395000px;}
.y6d{bottom:554.737500px;}
.y118{bottom:556.785000px;}
.y18e{bottom:558.244500px;}
.y336{bottom:558.274500px;}
.y1f4{bottom:559.153500px;}
.y138{bottom:561.171000px;}
.y26a{bottom:562.216500px;}
.ye7{bottom:564.967500px;}
.y21c{bottom:565.086000px;}
.y2e7{bottom:565.392000px;}
.ya9{bottom:565.654500px;}
.y25{bottom:567.612000px;}
.y2aa{bottom:569.583000px;}
.y335{bottom:571.126500px;}
.y6c{bottom:571.923000px;}
.y117{bottom:572.559000px;}
.y18d{bottom:574.021500px;}
.y137{bottom:574.023000px;}
.y1f3{bottom:574.671000px;}
.y269{bottom:577.764000px;}
.y2e6{bottom:578.244000px;}
.y21b{bottom:580.309500px;}
.ya8{bottom:581.313000px;}
.y24{bottom:581.958000px;}
.y1c9{bottom:582.771000px;}
.y334{bottom:583.977000px;}
.y354{bottom:583.978500px;}
.y2a9{bottom:585.772500px;}
.y136{bottom:586.875000px;}
.y116{bottom:588.496500px;}
.y6b{bottom:589.108500px;}
.y18c{bottom:589.798500px;}
.y1f2{bottom:590.188500px;}
.y2e5{bottom:591.096000px;}
.y268{bottom:593.311500px;}
.y21a{bottom:595.531500px;}
.ye6{bottom:595.873500px;}
.y23{bottom:596.304000px;}
.y333{bottom:596.829000px;}
.y353{bottom:596.830500px;}
.ya7{bottom:596.973000px;}
.y1c8{bottom:598.690500px;}
.y135{bottom:599.727000px;}
.y2a8{bottom:602.955000px;}
.y2e4{bottom:603.718500px;}
.y115{bottom:604.270500px;}
.y18b{bottom:605.577000px;}
.y1f1{bottom:605.706000px;}
.y6a{bottom:606.294000px;}
.y267{bottom:608.859000px;}
.y332{bottom:609.681000px;}
.y352{bottom:609.682500px;}
.y22{bottom:610.650000px;}
.y219{bottom:610.755000px;}
.ye5{bottom:611.446500px;}
.ya6{bottom:612.631500px;}
.y1c7{bottom:614.611500px;}
.y2e3{bottom:616.570500px;}
.y2a7{bottom:619.143000px;}
.y114{bottom:620.044500px;}
.y1f0{bottom:621.222000px;}
.y18a{bottom:621.354000px;}
.y331{bottom:622.533000px;}
.y69{bottom:623.479500px;}
.y266{bottom:624.408000px;}
.y21{bottom:624.996000px;}
.y218{bottom:625.978500px;}
.ya5{bottom:628.290000px;}
.y2e2{bottom:629.422500px;}
.y1c6{bottom:630.532500px;}
.y19{bottom:634.515000px;}
.y2a6{bottom:635.331000px;}
.y330{bottom:635.385000px;}
.y113{bottom:635.817000px;}
.y1ef{bottom:636.739500px;}
.y20{bottom:639.342000px;}
.y265{bottom:639.955500px;}
.y188{bottom:640.384500px;}
.y68{bottom:640.665000px;}
.y217{bottom:641.202000px;}
.y2e1{bottom:642.274500px;}
.ye4{bottom:642.471000px;}
.ya4{bottom:643.948500px;}
.y18{bottom:647.367000px;}
.y32f{bottom:648.237000px;}
.y2a5{bottom:651.519000px;}
.y112{bottom:651.591000px;}
.y1c5{bottom:651.834000px;}
.y1ee{bottom:652.257000px;}
.y189{bottom:653.400000px;}
.y1f{bottom:653.688000px;}
.y2e0{bottom:654.897000px;}
.y264{bottom:655.503000px;}
.y216{bottom:656.425500px;}
.y67{bottom:657.850500px;}
.ya3{bottom:659.607000px;}
.y1c4{bottom:660.202500px;}
.y17{bottom:660.219000px;}
.y32e{bottom:661.089000px;}
.y187{bottom:664.300500px;}
.y111{bottom:667.365000px;}
.y2a4{bottom:667.707000px;}
.y2df{bottom:667.749000px;}
.y1ed{bottom:667.774500px;}
.y1e{bottom:668.035500px;}
.y263{bottom:671.050500px;}
.y16{bottom:673.071000px;}
.ye3{bottom:673.140000px;}
.y32d{bottom:673.941000px;}
.y66{bottom:675.036000px;}
.ya2{bottom:675.265500px;}
.y2de{bottom:680.599500px;}
.y186{bottom:682.093500px;}
.y1d{bottom:682.381500px;}
.y110{bottom:683.139000px;}
.y1ec{bottom:683.290500px;}
.y2a3{bottom:683.896500px;}
.y15{bottom:685.921500px;}
.y215{bottom:686.403000px;}
.y262{bottom:686.598000px;}
.y32c{bottom:686.791500px;}
.y351{bottom:686.793000px;}
.y1c3{bottom:687.265500px;}
.ye2{bottom:688.713000px;}
.ya1{bottom:690.924000px;}
.y65{bottom:692.221500px;}
.y2dd{bottom:693.222000px;}
.y1c{bottom:696.727500px;}
.y185{bottom:697.870500px;}
.y14{bottom:698.773500px;}
.y1eb{bottom:698.808000px;}
.y10f{bottom:698.911500px;}
.y32b{bottom:699.643500px;}
.y350{bottom:699.645000px;}
.y2a2{bottom:700.084500px;}
.y1c2{bottom:703.185000px;}
.ye1{bottom:704.284500px;}
.y2dc{bottom:706.074000px;}
.ya0{bottom:706.582500px;}
.y64{bottom:709.407000px;}
.y1b{bottom:711.073500px;}
.y13{bottom:711.625500px;}
.y32a{bottom:712.495500px;}
.y34f{bottom:712.497000px;}
.y1ea{bottom:714.325500px;}
.y10e{bottom:714.685500px;}
.y214{bottom:715.914000px;}
.y2a1{bottom:716.272500px;}
.y2db{bottom:718.696500px;}
.ye0{bottom:719.857500px;}
.y24b{bottom:720.589500px;}
.y9f{bottom:722.241000px;}
.y1c1{bottom:722.788500px;}
.y63{bottom:725.098500px;}
.y329{bottom:725.347500px;}
.y184{bottom:725.949000px;}
.y1e9{bottom:729.841500px;}
.y10d{bottom:730.459500px;}
.y213{bottom:731.137500px;}
.y2da{bottom:731.548500px;}
.y2a0{bottom:732.460500px;}
.ydf{bottom:735.429000px;}
.y1be{bottom:736.506000px;}
.y9e{bottom:737.901000px;}
.y328{bottom:738.199500px;}
.y12{bottom:739.626000px;}
.y1a{bottom:739.671000px;}
.y28a{bottom:741.724500px;}
.y183{bottom:741.726000px;}
.y62{bottom:742.284000px;}
.y2d9{bottom:744.171000px;}
.y1e8{bottom:745.359000px;}
.y10c{bottom:746.233500px;}
.y212{bottom:746.361000px;}
.y1c0{bottom:747.406500px;}
.y29f{bottom:748.650000px;}
.yde{bottom:751.002000px;}
.y327{bottom:751.051500px;}
.y1bf{bottom:751.782000px;}
.y9d{bottom:753.559500px;}
.y289{bottom:754.575000px;}
.y2d8{bottom:757.023000px;}
.y182{bottom:757.504500px;}
.y1e7{bottom:760.876500px;}
.y211{bottom:761.584500px;}
.y10b{bottom:762.006000px;}
.y326{bottom:763.903500px;}
.y29e{bottom:764.838000px;}
.ydd{bottom:766.573500px;}
.y61{bottom:766.941000px;}
.y1bd{bottom:768.561000px;}
.y9c{bottom:769.218000px;}
.y2d7{bottom:769.875000px;}
.y181{bottom:773.281500px;}
.y1e6{bottom:776.394000px;}
.y325{bottom:776.755500px;}
.y210{bottom:776.808000px;}
.y10a{bottom:777.780000px;}
.y29d{bottom:781.026000px;}
.ydc{bottom:782.146500px;}
.y2d6{bottom:782.497500px;}
.y1bc{bottom:784.480500px;}
.y9b{bottom:784.876500px;}
.y11{bottom:785.490000px;}
.y180{bottom:789.060000px;}
.y324{bottom:789.606000px;}
.y34e{bottom:789.607500px;}
.y60{bottom:791.599500px;}
.y20f{bottom:792.030000px;}
.y109{bottom:793.554000px;}
.y2d5{bottom:795.348000px;}
.y29c{bottom:797.214000px;}
.ydb{bottom:797.718000px;}
.y10{bottom:798.340500px;}
.y1bb{bottom:800.401500px;}
.y9a{bottom:800.535000px;}
.y323{bottom:802.458000px;}
.y34d{bottom:802.459500px;}
.y17f{bottom:804.837000px;}
.y1e5{bottom:807.253500px;}
.y2d4{bottom:808.200000px;}
.y5f{bottom:808.785000px;}
.y108{bottom:809.326500px;}
.yf{bottom:811.192500px;}
.yda{bottom:813.291000px;}
.y29b{bottom:813.402000px;}
.y322{bottom:815.310000px;}
.y99{bottom:816.193500px;}
.y1ba{bottom:816.321000px;}
.y17e{bottom:820.614000px;}
.y2d3{bottom:820.822500px;}
.ye{bottom:824.044500px;}
.y107{bottom:825.100500px;}
.y5e{bottom:825.970500px;}
.y321{bottom:828.162000px;}
.yd9{bottom:828.862500px;}
.y29a{bottom:829.591500px;}
.y98{bottom:831.852000px;}
.y2d2{bottom:833.674500px;}
.y17d{bottom:836.392500px;}
.yd{bottom:836.896500px;}
.y1b8{bottom:837.981000px;}
.y320{bottom:841.014000px;}
.y106{bottom:841.054500px;}
.y1e4{bottom:841.245000px;}
.y5d{bottom:843.156000px;}
.yd8{bottom:844.435500px;}
.y299{bottom:845.779500px;}
.y2d1{bottom:846.297000px;}
.y1b7{bottom:846.349500px;}
.y97{bottom:847.510500px;}
.yc{bottom:852.378000px;}
.y17c{bottom:852.559500px;}
.y31f{bottom:853.866000px;}
.y1b9{bottom:856.377000px;}
.y2d0{bottom:859.149000px;}
.yd7{bottom:860.007000px;}
.y5c{bottom:860.341500px;}
.y96{bottom:863.170500px;}
.y31e{bottom:866.718000px;}
.y17b{bottom:868.338000px;}
.yb{bottom:871.806000px;}
.y2cf{bottom:872.001000px;}
.y105{bottom:873.591000px;}
.yd6{bottom:875.580000px;}
.y5b{bottom:877.527000px;}
.y95{bottom:878.829000px;}
.y31d{bottom:879.570000px;}
.y298{bottom:881.635500px;}
.y1b6{bottom:882.306000px;}
.y17a{bottom:884.115000px;}
.y2ce{bottom:884.623500px;}
.y104{bottom:889.758000px;}
.yd5{bottom:891.151500px;}
.y31c{bottom:892.420500px;}
.y34c{bottom:892.422000px;}
.y94{bottom:894.487500px;}
.y5a{bottom:894.712500px;}
.y2cd{bottom:897.474000px;}
.y1b5{bottom:898.227000px;}
.ya{bottom:899.011500px;}
.y179{bottom:899.893500px;}
.y31b{bottom:905.272500px;}
.y34b{bottom:905.274000px;}
.y103{bottom:905.532000px;}
.yd4{bottom:906.724500px;}
.y93{bottom:910.146000px;}
.y2cc{bottom:910.326000px;}
.y59{bottom:910.404000px;}
.y1b4{bottom:914.148000px;}
.y178{bottom:915.670500px;}
.y31a{bottom:918.124500px;}
.y297{bottom:919.978500px;}
.y102{bottom:921.700500px;}
.yd3{bottom:922.296000px;}
.y2cb{bottom:922.948500px;}
.y9{bottom:924.865500px;}
.y92{bottom:925.804500px;}
.y58{bottom:927.589500px;}
.y319{bottom:930.976500px;}
.y177{bottom:931.447500px;}
.y1b3{bottom:935.533500px;}
.y2ca{bottom:935.800500px;}
.y296{bottom:936.166500px;}
.yd2{bottom:937.869000px;}
.y91{bottom:941.463000px;}
.y318{bottom:943.828500px;}
.y1b1{bottom:943.902000px;}
.y57{bottom:944.775000px;}
.y176{bottom:947.226000px;}
.y2c9{bottom:948.423000px;}
.y295{bottom:952.354500px;}
.y1b2{bottom:952.726500px;}
.y317{bottom:956.680500px;}
.y90{bottom:957.121500px;}
.y2c8{bottom:961.275000px;}
.y56{bottom:961.960500px;}
.y294{bottom:968.544000px;}
.y316{bottom:969.532500px;}
.y8f{bottom:972.780000px;}
.y1b0{bottom:973.039500px;}
.yd1{bottom:976.162500px;}
.y55{bottom:979.146000px;}
.y315{bottom:982.384500px;}
.y293{bottom:984.732000px;}
.y8e{bottom:988.440000px;}
.y1af{bottom:988.960500px;}
.yd0{bottom:989.014500px;}
.y2c7{bottom:989.589000px;}
.y314{bottom:995.235000px;}
.y34a{bottom:995.236500px;}
.y54{bottom:996.331500px;}
.y292{bottom:1000.920000px;}
.ycf{bottom:1001.866500px;}
.y175{bottom:1001.958000px;}
.y8d{bottom:1004.098500px;}
.y8{bottom:1004.473500px;}
.y313{bottom:1008.087000px;}
.y349{bottom:1008.088500px;}
.y1ab{bottom:1010.347500px;}
.y53{bottom:1013.517000px;}
.yce{bottom:1014.718500px;}
.y174{bottom:1014.810000px;}
.y291{bottom:1017.108000px;}
.y1ac{bottom:1018.716000px;}
.y8c{bottom:1019.757000px;}
.y2c6{bottom:1020.282000px;}
.y312{bottom:1020.939000px;}
.y1ae{bottom:1022.620500px;}
.y1aa{bottom:1027.540500px;}
.ycd{bottom:1027.570500px;}
.y173{bottom:1027.662000px;}
.y52{bottom:1030.702500px;}
.y1ad{bottom:1032.612000px;}
.y290{bottom:1033.297500px;}
.y311{bottom:1033.791000px;}
.y8b{bottom:1035.415500px;}
.y2c5{bottom:1035.859500px;}
.ycc{bottom:1040.422500px;}
.y172{bottom:1040.514000px;}
.y7{bottom:1044.445500px;}
.y51{bottom:1046.394000px;}
.y310{bottom:1046.643000px;}
.y28f{bottom:1049.485500px;}
.y1a9{bottom:1050.289500px;}
.y8a{bottom:1051.074000px;}
.y2c4{bottom:1051.435500px;}
.ycb{bottom:1053.273000px;}
.y171{bottom:1053.366000px;}
.y30f{bottom:1059.495000px;}
.y50{bottom:1063.579500px;}
.y28e{bottom:1065.673500px;}
.y1a8{bottom:1066.209000px;}
.y89{bottom:1066.732500px;}
.y2c3{bottom:1067.011500px;}
.yca{bottom:1071.097500px;}
.y170{bottom:1071.189000px;}
.y30e{bottom:1072.347000px;}
.y28d{bottom:1081.861500px;}
.y1a7{bottom:1082.130000px;}
.y88{bottom:1082.391000px;}
.y30d{bottom:1085.197500px;}
.y348{bottom:1085.199000px;}
.y6{bottom:1086.802500px;}
.yc9{bottom:1087.240500px;}
.y4f{bottom:1088.236500px;}
.y87{bottom:1098.049500px;}
.y347{bottom:1098.051000px;}
.yc8{bottom:1100.092500px;}
.y2{bottom:1127.505000px;}
.y4c{bottom:1128.630000px;}
.y4e{bottom:1128.849000px;}
.h1c{height:3.156160px;}
.h20{height:21.220338px;}
.h1d{height:24.496205px;}
.ha{height:24.517090px;}
.h24{height:25.464576px;}
.h21{height:28.163067px;}
.h10{height:29.708388px;}
.h1a{height:32.661470px;}
.h11{height:33.623438px;}
.hc{height:33.623965px;}
.h1b{height:33.952626px;}
.h6{height:34.478653px;}
.hd{height:35.024963px;}
.h3{height:37.826367px;}
.he{height:39.403015px;}
.hf{height:42.029824px;}
.h4{height:43.781067px;}
.h26{height:44.592576px;}
.hb{height:49.253906px;}
.h25{height:60.393470px;}
.h9{height:60.490228px;}
.h15{height:60.515067px;}
.h29{height:60.521067px;}
.h14{height:61.326576px;}
.h28{height:61.332576px;}
.h16{height:61.684626px;}
.h27{height:62.424576px;}
.h8{height:62.782567px;}
.h17{height:64.461470px;}
.h1f{height:67.426626px;}
.h2a{height:67.995470px;}
.h19{height:68.908626px;}
.h1e{height:69.250626px;}
.h22{height:70.776160px;}
.h7{height:73.880859px;}
.h5{height:76.617004px;}
.h18{height:77.255067px;}
.h12{height:77.538576px;}
.h13{height:78.066576px;}
.h23{height:129.238338px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.x43{left:58.492500px;}
.x29{left:62.710500px;}
.x8{left:66.601500px;}
.xe{left:71.923500px;}
.x7{left:74.314500px;}
.x11{left:76.194000px;}
.x9{left:78.796500px;}
.x18{left:82.180500px;}
.x44{left:84.820500px;}
.x12{left:92.247000px;}
.x17{left:105.165000px;}
.x26{left:108.165000px;}
.x28{left:112.972500px;}
.x3c{left:146.649000px;}
.x3e{left:149.397000px;}
.xf{left:185.497500px;}
.x3a{left:188.346000px;}
.x10{left:191.907000px;}
.x3d{left:217.725000px;}
.x40{left:227.302500px;}
.x3f{left:261.849000px;}
.x4{left:280.422000px;}
.x27{left:281.622000px;}
.x5{left:289.153500px;}
.x6{left:302.995500px;}
.x1{left:310.121979px;}
.x3{left:341.316000px;}
.x3b{left:410.556000px;}
.x41{left:441.626979px;}
.xd{left:444.311979px;}
.xa{left:459.906000px;}
.x2a{left:461.700000px;}
.x2b{left:463.941000px;}
.x42{left:467.401500px;}
.xb{left:477.838500px;}
.x13{left:480.232500px;}
.x1e{left:488.272500px;}
.x2c{left:489.439500px;}
.x37{left:494.631000px;}
.x34{left:501.457500px;}
.x35{left:502.473000px;}
.x19{left:504.139500px;}
.x2d{left:505.731000px;}
.x31{left:508.095000px;}
.x14{left:511.578000px;}
.x30{left:512.814000px;}
.x22{left:517.284000px;}
.x36{left:518.895000px;}
.x20{left:521.197500px;}
.x24{left:522.649500px;}
.x1f{left:527.523000px;}
.x32{left:531.880500px;}
.x1c{left:535.921500px;}
.x33{left:540.148500px;}
.x1b{left:542.247000px;}
.x15{left:546.064500px;}
.x39{left:554.239500px;}
.x38{left:561.813000px;}
.x23{left:600.202500px;}
.xc{left:606.086979px;}
.x16{left:609.873000px;}
.x2e{left:614.010000px;}
.x2f{left:629.365500px;}
.x21{left:634.660500px;}
.x25{left:637.500000px;}
.x1d{left:645.988500px;}
.x1a{left:820.812000px;}
@media print{
.v3{vertical-align:-25.024000pt;}
.v11{vertical-align:-18.597333pt;}
.v6{vertical-align:-13.386667pt;}
.v4{vertical-align:-11.904000pt;}
.v5{vertical-align:-10.629333pt;}
.v12{vertical-align:-8.848000pt;}
.v14{vertical-align:-5.034667pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:4.250667pt;}
.v2{vertical-align:5.312000pt;}
.v13{vertical-align:8.848000pt;}
.ve{vertical-align:11.904000pt;}
.v7{vertical-align:14.874667pt;}
.v18{vertical-align:15.850667pt;}
.vd{vertical-align:17.002667pt;}
.v1{vertical-align:19.712000pt;}
.v9{vertical-align:20.784000pt;}
.vf{vertical-align:24.650667pt;}
.v10{vertical-align:28.266667pt;}
.vb{vertical-align:29.754667pt;}
.v8{vertical-align:31.408000pt;}
.v19{vertical-align:32.853333pt;}
.va{vertical-align:46.288000pt;}
.v15{vertical-align:60.106667pt;}
.v16{vertical-align:89.861333pt;}
.v17{vertical-align:96.016000pt;}
.lsf{letter-spacing:0.000000pt;}
.ls92{letter-spacing:0.000002pt;}
.ls8d{letter-spacing:0.000013pt;}
.lsc{letter-spacing:0.000020pt;}
.ls47{letter-spacing:0.000025pt;}
.ls4f{letter-spacing:0.000033pt;}
.ls2a{letter-spacing:0.000052pt;}
.ls5d{letter-spacing:0.000154pt;}
.ls56{letter-spacing:0.000300pt;}
.ls1b{letter-spacing:0.000424pt;}
.ls15{letter-spacing:0.000548pt;}
.ls4d{letter-spacing:0.000672pt;}
.ls1{letter-spacing:0.000780pt;}
.ls66{letter-spacing:0.000979pt;}
.ls79{letter-spacing:0.001067pt;}
.ls70{letter-spacing:0.001346pt;}
.ls33{letter-spacing:0.001913pt;}
.ls91{letter-spacing:0.001981pt;}
.lsb{letter-spacing:0.002275pt;}
.ls22{letter-spacing:0.002373pt;}
.ls3a{letter-spacing:0.002533pt;}
.ls96{letter-spacing:0.002568pt;}
.ls7d{letter-spacing:0.003200pt;}
.ls80{letter-spacing:0.003312pt;}
.ls59{letter-spacing:0.003561pt;}
.ls82{letter-spacing:0.004057pt;}
.ls78{letter-spacing:0.637979pt;}
.ls5c{letter-spacing:1.590912pt;}
.ls8e{letter-spacing:1.596245pt;}
.ls3f{letter-spacing:1.699791pt;}
.ls11{letter-spacing:2.124845pt;}
.lsd{letter-spacing:2.653926pt;}
.ls39{letter-spacing:2.654481pt;}
.ls0{letter-spacing:2.654563pt;}
.ls45{letter-spacing:2.654647pt;}
.ls3{letter-spacing:2.654810pt;}
.ls35{letter-spacing:2.655488pt;}
.ls36{letter-spacing:2.655753pt;}
.ls1c{letter-spacing:2.655821pt;}
.ls3c{letter-spacing:2.655829pt;}
.ls14{letter-spacing:2.657067pt;}
.ls3e{letter-spacing:2.657920pt;}
.ls8a{letter-spacing:2.658133pt;}
.ls85{letter-spacing:2.658816pt;}
.ls38{letter-spacing:2.659814pt;}
.ls2{letter-spacing:2.660143pt;}
.ls34{letter-spacing:2.660565pt;}
.ls4c{letter-spacing:3.824264pt;}
.ls41{letter-spacing:3.824548pt;}
.ls32{letter-spacing:4.672424pt;}
.ls48{letter-spacing:6.373067pt;}
.ls6d{letter-spacing:6.375600pt;}
.ls1a{letter-spacing:6.377390pt;}
.ls7c{letter-spacing:6.802373pt;}
.ls7{letter-spacing:8.324028pt;}
.ls5{letter-spacing:8.325500pt;}
.ls6{letter-spacing:8.325555pt;}
.ls4{letter-spacing:8.325994pt;}
.ls8{letter-spacing:8.326076pt;}
.ls42{letter-spacing:8.393899pt;}
.ls6c{letter-spacing:9.035733pt;}
.ls5b{letter-spacing:9.442568pt;}
.ls74{letter-spacing:9.442941pt;}
.ls55{letter-spacing:9.447901pt;}
.ls75{letter-spacing:9.448274pt;}
.ls6e{letter-spacing:10.159769pt;}
.ls2f{letter-spacing:10.711814pt;}
.ls58{letter-spacing:11.805235pt;}
.ls4e{letter-spacing:11.808052pt;}
.ls65{letter-spacing:11.810568pt;}
.ls63{letter-spacing:11.811666pt;}
.ls5a{letter-spacing:12.101154pt;}
.ls54{letter-spacing:12.102400pt;}
.ls73{letter-spacing:12.104405pt;}
.ls51{letter-spacing:12.272052pt;}
.ls84{letter-spacing:13.508322pt;}
.ls8f{letter-spacing:13.644766pt;}
.ls1e{letter-spacing:13.935821pt;}
.ls53{letter-spacing:13.979733pt;}
.ls5f{letter-spacing:14.165153pt;}
.ls27{letter-spacing:14.167707pt;}
.ls5e{letter-spacing:14.170486pt;}
.ls69{letter-spacing:14.170719pt;}
.ls2e{letter-spacing:14.197405pt;}
.ls64{letter-spacing:14.459733pt;}
.ls57{letter-spacing:14.463821pt;}
.ls43{letter-spacing:14.463829pt;}
.ls6a{letter-spacing:14.464708pt;}
.ls83{letter-spacing:14.701483pt;}
.ls50{letter-spacing:15.307733pt;}
.ls6b{letter-spacing:15.676933pt;}
.ls30{letter-spacing:16.110229pt;}
.lsa{letter-spacing:16.306893pt;}
.ls6f{letter-spacing:16.501154pt;}
.ls95{letter-spacing:16.659561pt;}
.ls76{letter-spacing:16.825899pt;}
.ls77{letter-spacing:16.826419pt;}
.ls9{letter-spacing:16.880742pt;}
.ls68{letter-spacing:17.121067pt;}
.ls90{letter-spacing:18.063819pt;}
.ls71{letter-spacing:18.152405pt;}
.ls61{letter-spacing:18.178568pt;}
.ls3d{letter-spacing:18.183901pt;}
.ls89{letter-spacing:18.394486pt;}
.ls40{letter-spacing:19.278316pt;}
.ls3b{letter-spacing:21.140565pt;}
.ls31{letter-spacing:21.168586pt;}
.ls37{letter-spacing:21.256342pt;}
.ls52{letter-spacing:21.291733pt;}
.ls60{letter-spacing:21.381122pt;}
.ls7f{letter-spacing:21.704149pt;}
.ls93{letter-spacing:21.758481pt;}
.ls4b{letter-spacing:21.763313pt;}
.ls4a{letter-spacing:21.765386pt;}
.ls94{letter-spacing:23.262227pt;}
.lse{letter-spacing:23.907747pt;}
.ls8b{letter-spacing:24.161067pt;}
.ls46{letter-spacing:24.405163pt;}
.ls81{letter-spacing:25.549483pt;}
.ls8c{letter-spacing:27.259733pt;}
.ls7a{letter-spacing:28.162816pt;}
.ls62{letter-spacing:28.810436pt;}
.ls86{letter-spacing:31.191901pt;}
.ls7b{letter-spacing:32.303232pt;}
.ls87{letter-spacing:69.810568pt;}
.ls72{letter-spacing:107.181235pt;}
.ls1d{letter-spacing:296.031769pt;}
.ls16{letter-spacing:347.369899pt;}
.ls1f{letter-spacing:349.667072pt;}
.ls12{letter-spacing:349.944149pt;}
.ls26{letter-spacing:351.004373pt;}
.ls2c{letter-spacing:352.460587pt;}
.ls23{letter-spacing:352.490155pt;}
.ls17{letter-spacing:355.786931pt;}
.ls24{letter-spacing:360.938496pt;}
.ls2b{letter-spacing:361.227733pt;}
.ls28{letter-spacing:361.355733pt;}
.ls18{letter-spacing:362.333039pt;}
.ls20{letter-spacing:367.051339pt;}
.ls25{letter-spacing:368.539091pt;}
.ls10{letter-spacing:368.921655pt;}
.ls2d{letter-spacing:375.680300pt;}
.ls29{letter-spacing:377.168052pt;}
.ls13{letter-spacing:377.593124pt;}
.ls19{letter-spacing:377.720646pt;}
.ls21{letter-spacing:385.201913pt;}
.ls44{letter-spacing:690.015829pt;}
.ls88{letter-spacing:749.412322pt;}
.ls7e{letter-spacing:881.365086pt;}
.ls67{letter-spacing:907.919769pt;}
.ls49{letter-spacing:1010.214400pt;}
.wsf{word-spacing:-30.318387pt;}
.ws53{word-spacing:-28.097259pt;}
.wsd7{word-spacing:-22.477878pt;}
.ws10e{word-spacing:-21.938663pt;}
.ws10c{word-spacing:-21.936714pt;}
.wscd{word-spacing:-21.933330pt;}
.ws118{word-spacing:-21.932283pt;}
.ws112{word-spacing:-21.931380pt;}
.ws11d{word-spacing:-21.722105pt;}
.ws58{word-spacing:-21.721179pt;}
.ws2{word-spacing:-21.538128pt;}
.ws12b{word-spacing:-21.073033pt;}
.ws52{word-spacing:-18.533139pt;}
.ws121{word-spacing:-17.560743pt;}
.ws148{word-spacing:-17.376998pt;}
.wsfd{word-spacing:-16.450355pt;}
.wsf7{word-spacing:-16.290953pt;}
.ws147{word-spacing:-14.826558pt;}
.wsf5{word-spacing:-13.899913pt;}
.wsfe{word-spacing:-13.575703pt;}
.ws1{word-spacing:-13.351344pt;}
.ws2c{word-spacing:-12.454610pt;}
.wsfc{word-spacing:-11.583183pt;}
.ws8{word-spacing:-11.551545pt;}
.ws1ab{word-spacing:-11.462949pt;}
.ws19{word-spacing:-11.209164pt;}
.ws1a8{word-spacing:-11.014949pt;}
.wsb{word-spacing:-10.897725pt;}
.ws0{word-spacing:-10.329120pt;}
.ws131{word-spacing:-10.124283pt;}
.ws1cc{word-spacing:-9.963719pt;}
.ws12a{word-spacing:-9.914105pt;}
.ws129{word-spacing:-9.487844pt;}
.ws116{word-spacing:-8.992714pt;}
.ws49{word-spacing:-8.943403pt;}
.ws16f{word-spacing:-8.518949pt;}
.ws175{word-spacing:-8.112714pt;}
.ws130{word-spacing:-7.766949pt;}
.ws5a{word-spacing:-7.766047pt;}
.ws1af{word-spacing:-7.761616pt;}
.ws1c8{word-spacing:-7.760714pt;}
.ws4{word-spacing:-7.661937pt;}
.ws135{word-spacing:-7.462949pt;}
.ws6{word-spacing:-6.886195pt;}
.ws13b{word-spacing:-6.605679pt;}
.ws1a4{word-spacing:-6.337616pt;}
.ws15c{word-spacing:-6.235380pt;}
.ws12d{word-spacing:-5.930105pt;}
.ws17b{word-spacing:-5.414949pt;}
.ws142{word-spacing:-5.334861pt;}
.ws15d{word-spacing:-4.267380pt;}
.ws139{word-spacing:-4.248346pt;}
.ws181{word-spacing:-4.225616pt;}
.ws18e{word-spacing:-4.076283pt;}
.ws18c{word-spacing:-3.873616pt;}
.ws17c{word-spacing:-3.484283pt;}
.ws1ca{word-spacing:-2.550432pt;}
.ws168{word-spacing:-2.539380pt;}
.wsc6{word-spacing:-2.507925pt;}
.wsc9{word-spacing:-2.428396pt;}
.wsc8{word-spacing:-2.422910pt;}
.ws1ac{word-spacing:-2.380403pt;}
.wsa{word-spacing:-2.365530pt;}
.ws1c7{word-spacing:-2.337896pt;}
.ws7{word-spacing:-2.309207pt;}
.ws1e{word-spacing:-2.295389pt;}
.wsad{word-spacing:-2.252882pt;}
.ws144{word-spacing:-2.125360pt;}
.ws127{word-spacing:-2.100771pt;}
.ws1c4{word-spacing:-2.082853pt;}
.wsee{word-spacing:-2.054047pt;}
.ws9a{word-spacing:-1.997838pt;}
.ws187{word-spacing:-1.955331pt;}
.ws1b5{word-spacing:-1.870999pt;}
.ws66{word-spacing:-1.870317pt;}
.wse4{word-spacing:-1.827810pt;}
.ws1ad{word-spacing:-1.785302pt;}
.wsa1{word-spacing:-1.742795pt;}
.ws1c5{word-spacing:-1.734047pt;}
.ws191{word-spacing:-1.572766pt;}
.ws8a{word-spacing:-1.530259pt;}
.ws8b{word-spacing:-1.487752pt;}
.wse{word-spacing:-1.462252pt;}
.ws6f{word-spacing:-1.445245pt;}
.ws7e{word-spacing:-1.402738pt;}
.ws55{word-spacing:-1.190202pt;}
.ws179{word-spacing:-1.147710pt;}
.wse9{word-spacing:-1.147694pt;}
.ws178{word-spacing:-1.105202pt;}
.ws23{word-spacing:-1.105187pt;}
.ws7f{word-spacing:-1.062680pt;}
.ws16a{word-spacing:-1.020173pt;}
.ws87{word-spacing:-0.977666pt;}
.ws14b{word-spacing:-0.892651pt;}
.ws1a9{word-spacing:-0.863155pt;}
.ws1aa{word-spacing:-0.850144pt;}
.wscc{word-spacing:-0.807637pt;}
.ws98{word-spacing:-0.765130pt;}
.ws150{word-spacing:-0.722622pt;}
.wsa2{word-spacing:-0.637608pt;}
.ws1b{word-spacing:-0.612105pt;}
.ws2a{word-spacing:-0.510086pt;}
.ws64{word-spacing:-0.425072pt;}
.ws60{word-spacing:-0.382565pt;}
.ws16d{word-spacing:-0.340058pt;}
.ws16c{word-spacing:-0.255043pt;}
.ws65{word-spacing:-0.212536pt;}
.wse3{word-spacing:-0.170029pt;}
.ws156{word-spacing:-0.156933pt;}
.ws157{word-spacing:-0.127522pt;}
.ws110{word-spacing:-0.089666pt;}
.ws10f{word-spacing:-0.085014pt;}
.ws54{word-spacing:-0.042507pt;}
.ws9{word-spacing:-0.039425pt;}
.ws1a{word-spacing:-0.038257pt;}
.wsd5{word-spacing:-0.034006pt;}
.ws11f{word-spacing:-0.031881pt;}
.ws120{word-spacing:-0.026567pt;}
.ws48{word-spacing:0.000000pt;}
.wsa0{word-spacing:0.042507pt;}
.ws25{word-spacing:0.085014pt;}
.wsb0{word-spacing:0.127522pt;}
.ws210{word-spacing:0.136023pt;}
.wse2{word-spacing:0.212536pt;}
.ws1cf{word-spacing:0.238041pt;}
.wsa9{word-spacing:0.255043pt;}
.ws119{word-spacing:0.297550pt;}
.ws38{word-spacing:0.340058pt;}
.ws39{word-spacing:0.382565pt;}
.ws1b9{word-spacing:0.425072pt;}
.ws115{word-spacing:0.467579pt;}
.ws1e6{word-spacing:0.476082pt;}
.ws136{word-spacing:0.510086pt;}
.ws6e{word-spacing:0.552594pt;}
.wsa7{word-spacing:0.595101pt;}
.ws28{word-spacing:0.637608pt;}
.ws173{word-spacing:0.637618pt;}
.wsdb{word-spacing:0.680115pt;}
.ws1bf{word-spacing:0.722622pt;}
.ws76{word-spacing:0.765130pt;}
.ws75{word-spacing:0.807637pt;}
.ws221{word-spacing:0.816141pt;}
.ws9f{word-spacing:0.850144pt;}
.ws6c{word-spacing:0.892651pt;}
.ws1f2{word-spacing:0.918158pt;}
.ws111{word-spacing:0.935158pt;}
.ws16e{word-spacing:0.977666pt;}
.wsdf{word-spacing:1.020173pt;}
.ws212{word-spacing:1.020176pt;}
.ws91{word-spacing:1.105187pt;}
.ws104{word-spacing:1.126334pt;}
.ws5e{word-spacing:1.147694pt;}
.ws183{word-spacing:1.190202pt;}
.ws182{word-spacing:1.190208pt;}
.ws1c0{word-spacing:1.205207pt;}
.ws8c{word-spacing:1.232709pt;}
.ws100{word-spacing:1.275216pt;}
.ws5f{word-spacing:1.317723pt;}
.ws92{word-spacing:1.360230pt;}
.ws213{word-spacing:1.360235pt;}
.ws174{word-spacing:1.360241pt;}
.ws128{word-spacing:1.402738pt;}
.wsf4{word-spacing:1.487752pt;}
.wsf6{word-spacing:1.489001pt;}
.ws96{word-spacing:1.530259pt;}
.ws41{word-spacing:1.572766pt;}
.ws146{word-spacing:1.615274pt;}
.ws29{word-spacing:1.657781pt;}
.ws109{word-spacing:1.698478pt;}
.wsec{word-spacing:1.700280pt;}
.ws1a6{word-spacing:1.700284pt;}
.ws3{word-spacing:1.700288pt;}
.ws1fc{word-spacing:1.700293pt;}
.ws1a7{word-spacing:1.700307pt;}
.wsda{word-spacing:1.700333pt;}
.ws13a{word-spacing:1.707667pt;}
.ws166{word-spacing:1.713001pt;}
.ws143{word-spacing:1.718093pt;}
.ws1ae{word-spacing:1.718157pt;}
.ws159{word-spacing:1.742788pt;}
.ws2b{word-spacing:1.742795pt;}
.ws14{word-spacing:1.759801pt;}
.ws2d{word-spacing:1.785302pt;}
.ws199{word-spacing:1.802311pt;}
.ws45{word-spacing:1.827810pt;}
.ws18{word-spacing:1.836314pt;}
.ws205{word-spacing:1.836317pt;}
.ws70{word-spacing:1.870317pt;}
.wse7{word-spacing:1.912824pt;}
.ws228{word-spacing:1.972340pt;}
.ws81{word-spacing:1.997838pt;}
.ws134{word-spacing:2.003332pt;}
.ws107{word-spacing:2.040346pt;}
.ws1d5{word-spacing:2.108364pt;}
.ws7c{word-spacing:2.125360pt;}
.ws196{word-spacing:2.142370pt;}
.ws149{word-spacing:2.167863pt;}
.ws14a{word-spacing:2.167867pt;}
.ws16b{word-spacing:2.197207pt;}
.ws46{word-spacing:2.210374pt;}
.ws176{word-spacing:2.252882pt;}
.ws17d{word-spacing:2.295389pt;}
.ws17e{word-spacing:2.295423pt;}
.ws4b{word-spacing:2.380403pt;}
.wsac{word-spacing:2.422910pt;}
.ws42{word-spacing:2.465418pt;}
.ws22a{word-spacing:2.482428pt;}
.ws40{word-spacing:2.507925pt;}
.ws18a{word-spacing:2.550432pt;}
.ws18f{word-spacing:2.592939pt;}
.ws138{word-spacing:2.635446pt;}
.ws21a{word-spacing:2.652458pt;}
.ws1c3{word-spacing:2.720461pt;}
.ws21e{word-spacing:2.754475pt;}
.ws9e{word-spacing:2.762968pt;}
.wsd3{word-spacing:2.788481pt;}
.ws8f{word-spacing:2.805475pt;}
.ws203{word-spacing:2.822487pt;}
.wsb1{word-spacing:2.847982pt;}
.wsaf{word-spacing:2.890490pt;}
.ws1ea{word-spacing:2.890499pt;}
.wsd{word-spacing:2.917069pt;}
.ws1da{word-spacing:2.924505pt;}
.ws74{word-spacing:2.932997pt;}
.ws32{word-spacing:2.945709pt;}
.ws35{word-spacing:2.945726pt;}
.ws36{word-spacing:2.945749pt;}
.ws1c{word-spacing:2.945753pt;}
.ws34{word-spacing:2.945761pt;}
.ws33{word-spacing:2.945761pt;}
.wsd2{word-spacing:2.958510pt;}
.ws99{word-spacing:2.975504pt;}
.ws37{word-spacing:2.984000pt;}
.ws2f{word-spacing:2.984010pt;}
.ws31{word-spacing:2.984028pt;}
.ws20e{word-spacing:2.992516pt;}
.wsab{word-spacing:3.018011pt;}
.wsd9{word-spacing:3.018024pt;}
.wsa4{word-spacing:3.060518pt;}
.ws1a5{word-spacing:3.137001pt;}
.ws162{word-spacing:3.145533pt;}
.wsb3{word-spacing:3.188040pt;}
.ws1f6{word-spacing:3.196551pt;}
.wsbf{word-spacing:3.222179pt;}
.wsbe{word-spacing:3.230547pt;}
.ws194{word-spacing:3.230557pt;}
.ws229{word-spacing:3.264563pt;}
.ws69{word-spacing:3.273054pt;}
.ws1d0{word-spacing:3.298569pt;}
.ws12e{word-spacing:3.315562pt;}
.ws22b{word-spacing:3.332575pt;}
.ws1c2{word-spacing:3.400576pt;}
.ws1f5{word-spacing:3.400587pt;}
.ws1c1{word-spacing:3.409001pt;}
.wscb{word-spacing:3.443083pt;}
.ws1e1{word-spacing:3.502604pt;}
.ws2e{word-spacing:3.528098pt;}
.ws22c{word-spacing:3.536610pt;}
.wsc7{word-spacing:3.570605pt;}
.wsa3{word-spacing:3.655619pt;}
.ws140{word-spacing:3.671654pt;}
.ws21b{word-spacing:3.672634pt;}
.ws123{word-spacing:3.698126pt;}
.ws15b{word-spacing:3.723512pt;}
.ws15a{word-spacing:3.740634pt;}
.ws97{word-spacing:3.783141pt;}
.ws155{word-spacing:3.825648pt;}
.ws154{word-spacing:3.825658pt;}
.wsc2{word-spacing:3.868155pt;}
.ws227{word-spacing:3.876669pt;}
.wsc3{word-spacing:3.910662pt;}
.ws43{word-spacing:3.953170pt;}
.ws3a{word-spacing:3.995677pt;}
.ws204{word-spacing:4.046698pt;}
.ws15{word-spacing:4.055193pt;}
.ws3b{word-spacing:4.080691pt;}
.ws1e5{word-spacing:4.080704pt;}
.ws1fd{word-spacing:4.114710pt;}
.ws151{word-spacing:4.123198pt;}
.ws95{word-spacing:4.182722pt;}
.ws193{word-spacing:4.202194pt;}
.ws17f{word-spacing:4.208213pt;}
.ws93{word-spacing:4.216727pt;}
.wse6{word-spacing:4.230334pt;}
.wse5{word-spacing:4.250720pt;}
.ws1e7{word-spacing:4.250733pt;}
.ws172{word-spacing:4.293227pt;}
.wsa5{word-spacing:4.335734pt;}
.ws125{word-spacing:4.378242pt;}
.wse1{word-spacing:4.420749pt;}
.ws10a{word-spacing:4.463256pt;}
.ws216{word-spacing:4.488774pt;}
.ws171{word-spacing:4.505763pt;}
.ws170{word-spacing:4.505766pt;}
.ws1b8{word-spacing:4.534334pt;}
.ws1b7{word-spacing:4.548270pt;}
.ws3f{word-spacing:4.590778pt;}
.ws158{word-spacing:4.666541pt;}
.ws77{word-spacing:4.675792pt;}
.ws1df{word-spacing:4.692810pt;}
.ws7d{word-spacing:4.718299pt;}
.wsf2{word-spacing:4.760806pt;}
.wsa8{word-spacing:4.803314pt;}
.ws10d{word-spacing:4.817001pt;}
.ws62{word-spacing:4.888328pt;}
.ws20b{word-spacing:4.896845pt;}
.ws108{word-spacing:4.930835pt;}
.ws1bc{word-spacing:4.973342pt;}
.ws106{word-spacing:5.015850pt;}
.ws197{word-spacing:5.032868pt;}
.wsd6{word-spacing:5.058181pt;}
.ws79{word-spacing:5.058357pt;}
.wsd4{word-spacing:5.066874pt;}
.ws13{word-spacing:5.088119pt;}
.ws73{word-spacing:5.100864pt;}
.ws84{word-spacing:5.143371pt;}
.ws198{word-spacing:5.168892pt;}
.ws1bb{word-spacing:5.185878pt;}
.wseb{word-spacing:5.228386pt;}
.ws180{word-spacing:5.270893pt;}
.ws177{word-spacing:5.270901pt;}
.ws201{word-spacing:5.270909pt;}
.ws10b{word-spacing:5.302334pt;}
.ws7a{word-spacing:5.313400pt;}
.ws1dd{word-spacing:5.372927pt;}
.ws3d{word-spacing:5.398414pt;}
.ws1f3{word-spacing:5.406933pt;}
.ws13e{word-spacing:5.440922pt;}
.ws16{word-spacing:5.470684pt;}
.ws89{word-spacing:5.525936pt;}
.ws215{word-spacing:5.542956pt;}
.ws71{word-spacing:5.568443pt;}
.ws18d{word-spacing:5.601001pt;}
.ws18b{word-spacing:5.610950pt;}
.ws1ed{word-spacing:5.678980pt;}
.ws188{word-spacing:5.695965pt;}
.ws189{word-spacing:5.696009pt;}
.ws103{word-spacing:5.707128pt;}
.ws1be{word-spacing:5.712986pt;}
.ws78{word-spacing:5.738472pt;}
.ws224{word-spacing:5.746991pt;}
.ws101{word-spacing:5.776620pt;}
.ws102{word-spacing:5.780979pt;}
.ws72{word-spacing:5.823486pt;}
.ws9d{word-spacing:5.951008pt;}
.ws222{word-spacing:5.951027pt;}
.ws3e{word-spacing:5.993515pt;}
.wsce{word-spacing:6.031362pt;}
.wscf{word-spacing:6.036022pt;}
.ws63{word-spacing:6.078530pt;}
.ws1d1{word-spacing:6.087050pt;}
.ws9b{word-spacing:6.121037pt;}
.ws21c{word-spacing:6.121056pt;}
.wse8{word-spacing:6.163544pt;}
.wsbb{word-spacing:6.206051pt;}
.ws211{word-spacing:6.223074pt;}
.ws190{word-spacing:6.248558pt;}
.ws1b4{word-spacing:6.291066pt;}
.ws1e2{word-spacing:6.325091pt;}
.wsea{word-spacing:6.335359pt;}
.ws137{word-spacing:6.418587pt;}
.ws67{word-spacing:6.461094pt;}
.ws1f1{word-spacing:6.461115pt;}
.ws68{word-spacing:6.503602pt;}
.ws169{word-spacing:6.546109pt;}
.ws90{word-spacing:6.588616pt;}
.ws13c{word-spacing:6.589577pt;}
.ws11{word-spacing:6.618380pt;}
.ws21{word-spacing:6.631123pt;}
.ws1ff{word-spacing:6.665150pt;}
.wsca{word-spacing:6.673630pt;}
.ws1b6{word-spacing:6.716138pt;}
.ws82{word-spacing:6.758645pt;}
.ws1d8{word-spacing:6.767167pt;}
.ws11a{word-spacing:6.801152pt;}
.ws1e4{word-spacing:6.835179pt;}
.ws105{word-spacing:6.843659pt;}
.ws186{word-spacing:6.843665pt;}
.ws17{word-spacing:6.924433pt;}
.wsb4{word-spacing:6.928674pt;}
.ws167{word-spacing:6.928684pt;}
.ws83{word-spacing:6.971181pt;}
.ws1ec{word-spacing:6.971203pt;}
.ws1d2{word-spacing:7.005209pt;}
.wsb7{word-spacing:7.013688pt;}
.ws1b3{word-spacing:7.056155pt;}
.ws1b0{word-spacing:7.056170pt;}
.ws1b2{word-spacing:7.056195pt;}
.ws1b1{word-spacing:7.056208pt;}
.ws5c{word-spacing:7.141210pt;}
.ws8e{word-spacing:7.183717pt;}
.ws5d{word-spacing:7.226224pt;}
.ws164{word-spacing:7.259667pt;}
.ws163{word-spacing:7.268641pt;}
.ws165{word-spacing:7.268731pt;}
.ws1d6{word-spacing:7.277255pt;}
.wsaa{word-spacing:7.311238pt;}
.ws214{word-spacing:7.345267pt;}
.wsba{word-spacing:7.353746pt;}
.ws206{word-spacing:7.379273pt;}
.ws11e{word-spacing:7.396253pt;}
.ws1f0{word-spacing:7.413279pt;}
.wsed{word-spacing:7.426663pt;}
.wsef{word-spacing:7.438760pt;}
.ws1fa{word-spacing:7.447285pt;}
.ws22f{word-spacing:7.481291pt;}
.ws1ce{word-spacing:7.515297pt;}
.ws24{word-spacing:7.523774pt;}
.ws1e8{word-spacing:7.549302pt;}
.wsb8{word-spacing:7.608789pt;}
.ws14f{word-spacing:7.608799pt;}
.ws14e{word-spacing:7.622334pt;}
.wsf8{word-spacing:7.651296pt;}
.ws1e0{word-spacing:7.685326pt;}
.wsb5{word-spacing:7.736310pt;}
.ws9c{word-spacing:7.778818pt;}
.ws219{word-spacing:7.787343pt;}
.ws1fe{word-spacing:7.889361pt;}
.ws10{word-spacing:7.919102pt;}
.ws6d{word-spacing:7.948846pt;}
.ws8d{word-spacing:7.991354pt;}
.wsb2{word-spacing:8.033861pt;}
.ws1f7{word-spacing:8.059390pt;}
.ws1ba{word-spacing:8.076368pt;}
.ws44{word-spacing:8.161382pt;}
.ws1de{word-spacing:8.195414pt;}
.wsf9{word-spacing:8.246397pt;}
.ws1a3{word-spacing:8.251667pt;}
.ws88{word-spacing:8.331411pt;}
.ws14c{word-spacing:8.373918pt;}
.wsae{word-spacing:8.416426pt;}
.ws85{word-spacing:8.586454pt;}
.wsb6{word-spacing:8.671469pt;}
.ws1d3{word-spacing:8.671496pt;}
.ws22d{word-spacing:8.705502pt;}
.ws6a{word-spacing:8.713976pt;}
.ws4d{word-spacing:8.756483pt;}
.ws226{word-spacing:8.875531pt;}
.ws11c{word-spacing:8.884005pt;}
.ws17a{word-spacing:8.926512pt;}
.ws1db{word-spacing:8.943543pt;}
.ws1d4{word-spacing:9.045561pt;}
.wsb9{word-spacing:9.054034pt;}
.ws202{word-spacing:9.079566pt;}
.wsc4{word-spacing:9.096541pt;}
.ws200{word-spacing:9.113572pt;}
.wsc5{word-spacing:9.139048pt;}
.ws185{word-spacing:9.181555pt;}
.ws1f8{word-spacing:9.215590pt;}
.ws15e{word-spacing:9.224062pt;}
.wsd8{word-spacing:9.266570pt;}
.wsdd{word-spacing:9.309077pt;}
.wsdc{word-spacing:9.312823pt;}
.wsde{word-spacing:9.313001pt;}
.ws132{word-spacing:9.402293pt;}
.wsa6{word-spacing:9.436598pt;}
.ws223{word-spacing:9.453631pt;}
.ws1a2{word-spacing:9.564120pt;}
.ws80{word-spacing:9.606627pt;}
.ws141{word-spacing:9.649134pt;}
.ws13f{word-spacing:9.656441pt;}
.ws1ef{word-spacing:9.657666pt;}
.ws47{word-spacing:9.691642pt;}
.ws192{word-spacing:9.946685pt;}
.ws22e{word-spacing:9.963719pt;}
.ws20a{word-spacing:9.997725pt;}
.ws1eb{word-spacing:10.031731pt;}
.wsbd{word-spacing:10.116714pt;}
.ws61{word-spacing:10.201728pt;}
.ws208{word-spacing:10.303778pt;}
.ws217{word-spacing:10.337783pt;}
.ws20d{word-spacing:10.371789pt;}
.ws225{word-spacing:10.473807pt;}
.ws207{word-spacing:10.541819pt;}
.ws1fb{word-spacing:10.575825pt;}
.ws1c6{word-spacing:10.584293pt;}
.ws117{word-spacing:10.796829pt;}
.ws3c{word-spacing:10.881843pt;}
.ws11b{word-spacing:10.924350pt;}
.ws12{word-spacing:10.941369pt;}
.ws1c9{word-spacing:11.009365pt;}
.ws1ee{word-spacing:11.017901pt;}
.ws1e9{word-spacing:11.255942pt;}
.wsc0{word-spacing:11.349422pt;}
.wsc1{word-spacing:11.391930pt;}
.ws6b{word-spacing:11.476944pt;}
.ws20{word-spacing:11.519451pt;}
.wsd0{word-spacing:11.774494pt;}
.ws22{word-spacing:11.859509pt;}
.wsf0{word-spacing:11.944523pt;}
.wsf1{word-spacing:11.958334pt;}
.ws26{word-spacing:11.987030pt;}
.ws21d{word-spacing:12.004071pt;}
.wsfa{word-spacing:12.067174pt;}
.ws113{word-spacing:12.072045pt;}
.wsfb{word-spacing:12.072508pt;}
.ws114{word-spacing:12.075667pt;}
.ws14d{word-spacing:12.157059pt;}
.ws1f{word-spacing:12.242074pt;}
.ws27{word-spacing:12.369595pt;}
.ws86{word-spacing:12.454610pt;}
.wsbc{word-spacing:12.667146pt;}
.ws1d9{word-spacing:12.684188pt;}
.ws145{word-spacing:12.709653pt;}
.ws7b{word-spacing:12.794667pt;}
.ws21f{word-spacing:12.854218pt;}
.wsd1{word-spacing:12.888223pt;}
.ws1cb{word-spacing:13.058253pt;}
.ws1f4{word-spacing:13.534335pt;}
.ws195{word-spacing:13.704364pt;}
.ws1e3{word-spacing:13.738370pt;}
.ws1d7{word-spacing:13.772376pt;}
.ws5{word-spacing:14.112390pt;}
.ws30{word-spacing:14.116661pt;}
.wsc{word-spacing:14.146441pt;}
.ws160{word-spacing:14.432751pt;}
.ws124{word-spacing:14.434253pt;}
.ws20f{word-spacing:14.452493pt;}
.ws218{word-spacing:15.030593pt;}
.ws12f{word-spacing:15.472621pt;}
.ws1bd{word-spacing:15.642699pt;}
.ws184{word-spacing:16.152736pt;}
.ws153{word-spacing:16.363667pt;}
.ws152{word-spacing:16.365272pt;}
.ws1cd{word-spacing:16.594863pt;}
.ws1f9{word-spacing:16.764892pt;}
.wsf3{word-spacing:17.183200pt;}
.ws220{word-spacing:17.240974pt;}
.ws15f{word-spacing:18.849291pt;}
.ws161{word-spacing:18.849558pt;}
.ws13d{word-spacing:18.984413pt;}
.ws1dc{word-spacing:20.267497pt;}
.ws1d{word-spacing:21.211093pt;}
.ws20c{word-spacing:24.892294pt;}
.ws209{word-spacing:28.292881pt;}
.ws4a{word-spacing:48.670744pt;}
.ws19a{word-spacing:71.854396pt;}
.ws19f{word-spacing:72.004228pt;}
.ws19e{word-spacing:76.158895pt;}
.ws19c{word-spacing:76.173141pt;}
.ws1a0{word-spacing:90.638895pt;}
.ws19b{word-spacing:95.284438pt;}
.ws1a1{word-spacing:114.429741pt;}
.ws19d{word-spacing:138.427265pt;}
.wsff{word-spacing:161.493861pt;}
.ws94{word-spacing:229.199541pt;}
.ws57{word-spacing:281.155806pt;}
.ws4c{word-spacing:281.781895pt;}
.ws4f{word-spacing:282.121953pt;}
.ws56{word-spacing:307.170321pt;}
.ws50{word-spacing:312.217051pt;}
.ws51{word-spacing:318.083044pt;}
.ws5b{word-spacing:321.696156pt;}
.ws59{word-spacing:324.875127pt;}
.ws4e{word-spacing:329.135431pt;}
.ws122{word-spacing:555.941700pt;}
.ws133{word-spacing:862.783626pt;}
.ws12c{word-spacing:870.266823pt;}
.ws126{word-spacing:936.034253pt;}
.wse0{word-spacing:1118.630659pt;}
._3{margin-left:-16.737280pt;}
._2{margin-left:-2.658443pt;}
._13{width:0.892651pt;}
._12{width:2.550432pt;}
._35{width:3.469785pt;}
._26{width:4.677810pt;}
._2a{width:6.518802pt;}
._2b{width:7.412227pt;}
._1{width:9.369102pt;}
._39{width:10.905793pt;}
._25{width:12.642924pt;}
._0{width:13.886928pt;}
._16{width:15.045776pt;}
._40{width:16.348445pt;}
._24{width:17.971929pt;}
._34{width:19.815199pt;}
._23{width:21.253600pt;}
._27{width:22.790200pt;}
._28{width:24.895396pt;}
._37{width:26.329230pt;}
._4{width:28.352609pt;}
._29{width:30.607092pt;}
._38{width:35.027870pt;}
._41{width:49.682571pt;}
._3d{width:81.821100pt;}
._32{width:85.864813pt;}
._3f{width:94.876368pt;}
._21{width:104.125964pt;}
._3a{width:109.486356pt;}
._33{width:119.292580pt;}
._1d{width:123.135243pt;}
._1b{width:126.773871pt;}
._3b{width:129.409843pt;}
._3e{width:143.070781pt;}
._1a{width:146.191221pt;}
._8{width:164.842922pt;}
._31{width:176.422436pt;}
._3c{width:183.733698pt;}
._1f{width:191.453029pt;}
._2f{width:200.056514pt;}
._18{width:216.617371pt;}
._2d{width:238.381125pt;}
._1e{width:240.863554pt;}
._6{width:247.264382pt;}
._30{width:269.020411pt;}
._b{width:284.968269pt;}
._14{width:287.477860pt;}
._15{width:290.835929pt;}
._c{width:291.811928pt;}
._7{width:293.554723pt;}
._e{width:301.206019pt;}
._10{width:307.497085pt;}
._d{width:315.063366pt;}
._f{width:322.884691pt;}
._5{width:325.775181pt;}
._11{width:333.468984pt;}
._a{width:339.334978pt;}
._9{width:349.791749pt;}
._2e{width:367.671430pt;}
._2c{width:404.567796pt;}
._1c{width:534.640236pt;}
._19{width:557.152119pt;}
._17{width:588.641552pt;}
._22{width:632.611138pt;}
._20{width:641.928745pt;}
._36{width:1112.371966pt;}
.fs7{font-size:23.803733pt;}
.fsd{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fsc{font-size:34.005333pt;}
.fs8{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs0{font-size:38.256000pt;}
.fsa{font-size:38.256533pt;}
.fs6{font-size:39.425067pt;}
.fs1{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fs4{font-size:56.322133pt;}
.fs3{font-size:71.731200pt;}
.fs2{font-size:74.387733pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y4d{bottom:42.160000pt;}
.y133{bottom:64.790667pt;}
.y134{bottom:68.510667pt;}
.y5{bottom:70.346667pt;}
.y86{bottom:71.321333pt;}
.y132{bottom:72.229333pt;}
.y16f{bottom:75.145333pt;}
.y16d{bottom:82.584000pt;}
.y30c{bottom:82.745333pt;}
.y4{bottom:83.106667pt;}
.y242{bottom:84.774667pt;}
.y238{bottom:84.853333pt;}
.y20e{bottom:85.114667pt;}
.y288{bottom:85.141333pt;}
.yc7{bottom:85.240000pt;}
.y1a6{bottom:85.345333pt;}
.y1e3{bottom:85.472000pt;}
.y152{bottom:85.474667pt;}
.y28c{bottom:85.548000pt;}
.y24a{bottom:86.042667pt;}
.y85{bottom:86.680000pt;}
.y261{bottom:86.898667pt;}
.y16e{bottom:91.520000pt;}
.y101{bottom:93.133333pt;}
.y3{bottom:93.893333pt;}
.y30b{bottom:93.965333pt;}
.y241{bottom:98.228000pt;}
.y237{bottom:98.385333pt;}
.y20d{bottom:98.906667pt;}
.y287{bottom:98.961333pt;}
.yc6{bottom:99.158667pt;}
.y1a5{bottom:99.370667pt;}
.y1e2{bottom:99.624000pt;}
.y151{bottom:99.628000pt;}
.y131{bottom:99.754667pt;}
.y84{bottom:102.038667pt;}
.y249{bottom:102.313333pt;}
.y260{bottom:102.476000pt;}
.y2c2{bottom:103.193333pt;}
.y16c{bottom:104.037333pt;}
.y30a{bottom:105.388000pt;}
.y100{bottom:106.974667pt;}
.y16a{bottom:111.476000pt;}
.y240{bottom:111.682667pt;}
.y236{bottom:111.917333pt;}
.y20c{bottom:112.700000pt;}
.y286{bottom:112.781333pt;}
.yc5{bottom:113.077333pt;}
.y1a4{bottom:113.394667pt;}
.y130{bottom:113.776000pt;}
.y150{bottom:113.782667pt;}
.y309{bottom:116.608000pt;}
.y248{bottom:117.034667pt;}
.y83{bottom:117.397333pt;}
.y25f{bottom:118.053333pt;}
.y4b{bottom:119.168000pt;}
.y16b{bottom:120.412000pt;}
.yff{bottom:120.817333pt;}
.y23f{bottom:125.136000pt;}
.y235{bottom:125.448000pt;}
.y285{bottom:126.601333pt;}
.yc4{bottom:126.996000pt;}
.y1a3{bottom:127.418667pt;}
.y12f{bottom:127.797333pt;}
.y1e1{bottom:127.926667pt;}
.y308{bottom:128.032000pt;}
.y14f{bottom:128.361333pt;}
.y247{bottom:131.756000pt;}
.y169{bottom:131.837333pt;}
.y25e{bottom:133.630667pt;}
.y20b{bottom:134.153333pt;}
.yfe{bottom:134.658667pt;}
.y2c1{bottom:137.276000pt;}
.y23e{bottom:138.590667pt;}
.y234{bottom:138.980000pt;}
.y307{bottom:139.252000pt;}
.y167{bottom:139.276000pt;}
.y284{bottom:140.421333pt;}
.yc3{bottom:140.914667pt;}
.y39{bottom:141.590667pt;}
.y1a2{bottom:141.610667pt;}
.y12e{bottom:141.817333pt;}
.y246{bottom:146.478667pt;}
.y168{bottom:147.128000pt;}
.y25d{bottom:149.208000pt;}
.y306{bottom:150.676000pt;}
.y2c0{bottom:151.665333pt;}
.y23d{bottom:152.044000pt;}
.y233{bottom:152.525333pt;}
.y283{bottom:154.242667pt;}
.y38{bottom:154.342667pt;}
.y20a{bottom:154.813333pt;}
.yc2{bottom:154.833333pt;}
.y12d{bottom:155.998667pt;}
.y1e0{bottom:157.656000pt;}
.yfd{bottom:158.916000pt;}
.y14e{bottom:159.142667pt;}
.y245{bottom:161.200000pt;}
.y166{bottom:161.209333pt;}
.y305{bottom:161.896000pt;}
.y25c{bottom:164.785333pt;}
.y23c{bottom:165.497333pt;}
.y2bf{bottom:166.054667pt;}
.y232{bottom:166.473333pt;}
.y282{bottom:168.062667pt;}
.y164{bottom:168.648000pt;}
.yc1{bottom:168.752000pt;}
.y37{bottom:170.349333pt;}
.y1a1{bottom:170.581333pt;}
.y82{bottom:172.302667pt;}
.yfc{bottom:172.758667pt;}
.y14d{bottom:173.296000pt;}
.y304{bottom:173.320000pt;}
.y244{bottom:175.921333pt;}
.y165{bottom:176.500000pt;}
.y23b{bottom:178.952000pt;}
.y209{bottom:180.252000pt;}
.y2be{bottom:180.444000pt;}
.y281{bottom:181.882667pt;}
.yc0{bottom:182.670667pt;}
.y1a0{bottom:184.605333pt;}
.y303{bottom:184.744000pt;}
.y12c{bottom:184.920000pt;}
.yfb{bottom:186.600000pt;}
.y14c{bottom:187.449333pt;}
.y81{bottom:187.578667pt;}
.y1df{bottom:188.404000pt;}
.y163{bottom:190.316000pt;}
.y243{bottom:190.644000pt;}
.y231{bottom:192.705333pt;}
.y208{bottom:194.044000pt;}
.y280{bottom:195.702667pt;}
.y302{bottom:195.964000pt;}
.ybf{bottom:196.590667pt;}
.y161{bottom:197.754667pt;}
.y19f{bottom:198.630667pt;}
.y12b{bottom:198.941333pt;}
.yfa{bottom:200.442667pt;}
.y14b{bottom:201.604000pt;}
.y1de{bottom:202.554667pt;}
.y80{bottom:202.854667pt;}
.y23a{bottom:205.365333pt;}
.y162{bottom:205.606667pt;}
.y230{bottom:206.236000pt;}
.y301{bottom:207.386667pt;}
.y207{bottom:207.837333pt;}
.y27f{bottom:209.522667pt;}
.ybe{bottom:210.509333pt;}
.y2bd{bottom:212.317333pt;}
.y19e{bottom:212.654667pt;}
.y12a{bottom:212.961333pt;}
.y4a{bottom:213.104000pt;}
.y25b{bottom:213.437333pt;}
.y36{bottom:213.449333pt;}
.yf9{bottom:214.712000pt;}
.y14a{bottom:215.757333pt;}
.y1dd{bottom:216.706667pt;}
.y7f{bottom:218.130667pt;}
.y300{bottom:218.606667pt;}
.y22f{bottom:219.768000pt;}
.y206{bottom:221.630667pt;}
.y27e{bottom:223.342667pt;}
.ybd{bottom:224.428000pt;}
.y160{bottom:224.838667pt;}
.y25a{bottom:224.861333pt;}
.y19d{bottom:226.678667pt;}
.y129{bottom:226.982667pt;}
.y49{bottom:227.685333pt;}
.y35{bottom:227.870667pt;}
.yf8{bottom:228.553333pt;}
.y149{bottom:229.910667pt;}
.y2ff{bottom:230.030667pt;}
.y22e{bottom:233.300000pt;}
.y7e{bottom:233.406667pt;}
.y205{bottom:235.424000pt;}
.y239{bottom:235.580000pt;}
.y1dc{bottom:235.725333pt;}
.y27d{bottom:237.164000pt;}
.ybc{bottom:238.346667pt;}
.y15f{bottom:239.660000pt;}
.y259{bottom:240.704000pt;}
.y128{bottom:241.004000pt;}
.y2fe{bottom:241.454667pt;}
.y48{bottom:242.266667pt;}
.y34{bottom:242.293333pt;}
.y1db{bottom:243.164000pt;}
.y148{bottom:244.065333pt;}
.y2bc{bottom:246.400000pt;}
.y22d{bottom:246.832000pt;}
.y7d{bottom:248.682667pt;}
.y204{bottom:249.216000pt;}
.y27c{bottom:250.984000pt;}
.y258{bottom:252.128000pt;}
.ybb{bottom:252.265333pt;}
.y2fd{bottom:252.878667pt;}
.yf7{bottom:253.341333pt;}
.y15e{bottom:254.480000pt;}
.y19c{bottom:255.265333pt;}
.y33{bottom:256.714667pt;}
.y47{bottom:256.848000pt;}
.y147{bottom:258.218667pt;}
.y22c{bottom:260.364000pt;}
.y2bb{bottom:260.789333pt;}
.y203{bottom:263.009333pt;}
.y257{bottom:263.552000pt;}
.y7c{bottom:263.958667pt;}
.y2fc{bottom:264.098667pt;}
.y27b{bottom:264.804000pt;}
.yba{bottom:266.184000pt;}
.yf6{bottom:267.182667pt;}
.y1da{bottom:269.232000pt;}
.y15d{bottom:269.301333pt;}
.y127{bottom:269.558667pt;}
.y32{bottom:271.136000pt;}
.y46{bottom:271.430667pt;}
.y22b{bottom:273.896000pt;}
.y146{bottom:274.617333pt;}
.y2ba{bottom:275.178667pt;}
.y2fb{bottom:275.522667pt;}
.y202{bottom:276.802667pt;}
.y27a{bottom:278.624000pt;}
.y7b{bottom:279.234667pt;}
.y256{bottom:279.394667pt;}
.yb9{bottom:280.102667pt;}
.yf5{bottom:281.025333pt;}
.y145{bottom:282.056000pt;}
.y1d9{bottom:283.384000pt;}
.y15c{bottom:284.122667pt;}
.y19b{bottom:284.236000pt;}
.y31{bottom:285.558667pt;}
.y45{bottom:286.012000pt;}
.y2fa{bottom:286.946667pt;}
.y22a{bottom:287.426667pt;}
.y2b9{bottom:289.568000pt;}
.y201{bottom:290.596000pt;}
.y279{bottom:292.444000pt;}
.y255{bottom:293.662667pt;}
.yb8{bottom:294.021333pt;}
.y7a{bottom:294.510667pt;}
.yf4{bottom:294.866667pt;}
.y1d8{bottom:297.534667pt;}
.y19a{bottom:298.261333pt;}
.y2f9{bottom:298.370667pt;}
.y126{bottom:298.480000pt;}
.y15b{bottom:298.944000pt;}
.y30{bottom:299.980000pt;}
.y44{bottom:300.593333pt;}
.y229{bottom:300.972000pt;}
.y2b8{bottom:303.957333pt;}
.y254{bottom:305.086667pt;}
.y278{bottom:306.265333pt;}
.y144{bottom:307.021333pt;}
.yb7{bottom:307.941333pt;}
.yf3{bottom:308.709333pt;}
.y2f8{bottom:309.589333pt;}
.y79{bottom:309.786667pt;}
.y1d7{bottom:311.686667pt;}
.y199{bottom:312.285333pt;}
.y125{bottom:312.501333pt;}
.y346{bottom:313.462667pt;}
.y15a{bottom:313.765333pt;}
.y2f{bottom:314.401333pt;}
.y43{bottom:315.174667pt;}
.y253{bottom:316.510667pt;}
.y200{bottom:318.026667pt;}
.y2b7{bottom:318.348000pt;}
.y277{bottom:320.085333pt;}
.y2f7{bottom:321.013333pt;}
.y143{bottom:321.174667pt;}
.yb6{bottom:321.860000pt;}
.yf2{bottom:322.550667pt;}
.y345{bottom:324.886667pt;}
.y78{bottom:325.062667pt;}
.y1d6{bottom:326.245333pt;}
.y198{bottom:326.309333pt;}
.y124{bottom:326.521333pt;}
.y228{bottom:327.204000pt;}
.y252{bottom:327.934667pt;}
.y159{bottom:328.585333pt;}
.y2e{bottom:328.824000pt;}
.y42{bottom:329.756000pt;}
.y2f6{bottom:332.437333pt;}
.y2b6{bottom:332.737333pt;}
.y276{bottom:333.905333pt;}
.y142{bottom:335.328000pt;}
.yb5{bottom:335.778667pt;}
.y344{bottom:336.310667pt;}
.yf1{bottom:336.393333pt;}
.y251{bottom:339.357333pt;}
.y197{bottom:340.334667pt;}
.y77{bottom:340.338667pt;}
.y1d5{bottom:340.397333pt;}
.y123{bottom:340.542667pt;}
.y227{bottom:340.736000pt;}
.y2d{bottom:343.245333pt;}
.y158{bottom:343.406667pt;}
.y2f5{bottom:343.861333pt;}
.y41{bottom:344.337333pt;}
.y1ff{bottom:345.302667pt;}
.y2b5{bottom:347.126667pt;}
.y275{bottom:347.725333pt;}
.y343{bottom:347.733333pt;}
.y358{bottom:347.734667pt;}
.yb4{bottom:349.697333pt;}
.yf0{bottom:350.234667pt;}
.y250{bottom:350.781333pt;}
.y141{bottom:351.616000pt;}
.y226{bottom:354.268000pt;}
.y196{bottom:354.358667pt;}
.y1d4{bottom:354.548000pt;}
.y122{bottom:354.564000pt;}
.y2f4{bottom:355.081333pt;}
.y76{bottom:355.614667pt;}
.y2c{bottom:357.668000pt;}
.y40{bottom:358.920000pt;}
.y140{bottom:359.054667pt;}
.y1fe{bottom:359.096000pt;}
.y342{bottom:359.157333pt;}
.y357{bottom:359.158667pt;}
.y157{bottom:359.988000pt;}
.y2b4{bottom:361.516000pt;}
.y274{bottom:361.545333pt;}
.y28b{bottom:361.808000pt;}
.y24f{bottom:362.205333pt;}
.yb3{bottom:363.616000pt;}
.yef{bottom:364.077333pt;}
.y2f3{bottom:366.505333pt;}
.y225{bottom:367.798667pt;}
.y195{bottom:368.537333pt;}
.y121{bottom:368.584000pt;}
.y1d3{bottom:369.108000pt;}
.y341{bottom:370.581333pt;}
.y75{bottom:370.892000pt;}
.y2b{bottom:372.089333pt;}
.y1fd{bottom:372.889333pt;}
.y3f{bottom:373.501333pt;}
.y24e{bottom:373.629333pt;}
.y273{bottom:375.365333pt;}
.y2b3{bottom:375.906667pt;}
.yb2{bottom:377.534667pt;}
.y2f2{bottom:377.725333pt;}
.yee{bottom:377.918667pt;}
.y224{bottom:381.330667pt;}
.y340{bottom:382.005333pt;}
.y194{bottom:382.561333pt;}
.y120{bottom:382.605333pt;}
.y1d2{bottom:383.258667pt;}
.y13f{bottom:383.381333pt;}
.y24d{bottom:385.053333pt;}
.y74{bottom:386.168000pt;}
.y2a{bottom:386.510667pt;}
.y1fc{bottom:386.682667pt;}
.y3e{bottom:388.082667pt;}
.y2f1{bottom:389.149333pt;}
.y272{bottom:389.186667pt;}
.y2b2{bottom:390.296000pt;}
.yb1{bottom:391.453333pt;}
.yed{bottom:391.761333pt;}
.y33f{bottom:393.429333pt;}
.y223{bottom:394.862667pt;}
.y193{bottom:396.586667pt;}
.y11f{bottom:396.626667pt;}
.y1d1{bottom:397.410667pt;}
.y13e{bottom:397.534667pt;}
.y156{bottom:400.109333pt;}
.y1fb{bottom:400.474667pt;}
.y2f0{bottom:400.572000pt;}
.y29{bottom:400.933333pt;}
.y73{bottom:401.444000pt;}
.y3d{bottom:402.664000pt;}
.y271{bottom:403.006667pt;}
.y2b1{bottom:404.685333pt;}
.y33e{bottom:404.853333pt;}
.yb0{bottom:405.372000pt;}
.yec{bottom:405.602667pt;}
.y222{bottom:408.394667pt;}
.y192{bottom:410.610667pt;}
.y11e{bottom:410.794667pt;}
.y2ef{bottom:411.792000pt;}
.y13d{bottom:412.101333pt;}
.y1fa{bottom:414.268000pt;}
.y24c{bottom:414.425333pt;}
.y155{bottom:414.930667pt;}
.y28{bottom:415.354667pt;}
.y1cf{bottom:415.977333pt;}
.y1d0{bottom:416.220000pt;}
.y33d{bottom:416.277333pt;}
.y72{bottom:416.720000pt;}
.y270{bottom:416.826667pt;}
.y3c{bottom:417.245333pt;}
.yaf{bottom:419.292000pt;}
.yeb{bottom:419.445333pt;}
.y1ce{bottom:419.940000pt;}
.y2b0{bottom:419.958667pt;}
.y221{bottom:421.940000pt;}
.y2ee{bottom:423.216000pt;}
.y11d{bottom:424.814667pt;}
.y13c{bottom:426.254667pt;}
.y33c{bottom:427.701333pt;}
.y1f9{bottom:428.061333pt;}
.y27{bottom:429.776000pt;}
.y26f{bottom:430.646667pt;}
.y3b{bottom:431.828000pt;}
.y71{bottom:431.996000pt;}
.yae{bottom:433.210667pt;}
.yea{bottom:433.300000pt;}
.y2af{bottom:434.348000pt;}
.y2ed{bottom:434.640000pt;}
.y154{bottom:436.544000pt;}
.y11c{bottom:438.836000pt;}
.y33b{bottom:439.124000pt;}
.y356{bottom:439.125333pt;}
.y191{bottom:439.197333pt;}
.y13b{bottom:440.408000pt;}
.y1f8{bottom:441.853333pt;}
.y153{bottom:443.982667pt;}
.y1cd{bottom:444.396000pt;}
.y26e{bottom:444.466667pt;}
.y2ec{bottom:445.860000pt;}
.y3a{bottom:446.409333pt;}
.yad{bottom:447.129333pt;}
.y70{bottom:447.272000pt;}
.y220{bottom:448.170667pt;}
.y2ae{bottom:448.737333pt;}
.y33a{bottom:450.548000pt;}
.y355{bottom:450.549333pt;}
.y11b{bottom:452.857333pt;}
.y13a{bottom:454.562667pt;}
.y1f7{bottom:455.646667pt;}
.y2eb{bottom:457.284000pt;}
.y26d{bottom:458.286667pt;}
.y1cc{bottom:458.546667pt;}
.ye9{bottom:460.772000pt;}
.y26{bottom:460.990667pt;}
.yac{bottom:461.048000pt;}
.y21f{bottom:461.702667pt;}
.y339{bottom:461.972000pt;}
.y6f{bottom:462.548000pt;}
.y2ad{bottom:463.128000pt;}
.y11a{bottom:466.877333pt;}
.y190{bottom:468.168000pt;}
.y2ea{bottom:468.504000pt;}
.y139{bottom:468.716000pt;}
.y1f6{bottom:469.440000pt;}
.y26c{bottom:472.108000pt;}
.y1cb{bottom:472.698667pt;}
.y338{bottom:473.396000pt;}
.ye8{bottom:474.614667pt;}
.yab{bottom:474.966667pt;}
.y21e{bottom:475.234667pt;}
.y2ac{bottom:477.517333pt;}
.y6e{bottom:477.824000pt;}
.y2e9{bottom:479.928000pt;}
.y119{bottom:480.898667pt;}
.y18f{bottom:482.192000pt;}
.y1f5{bottom:483.233333pt;}
.y337{bottom:484.820000pt;}
.y26b{bottom:485.928000pt;}
.y1ca{bottom:487.270667pt;}
.y21d{bottom:488.766667pt;}
.yaa{bottom:488.885333pt;}
.y2e8{bottom:491.352000pt;}
.y2ab{bottom:491.906667pt;}
.y6d{bottom:493.100000pt;}
.y118{bottom:494.920000pt;}
.y18e{bottom:496.217333pt;}
.y336{bottom:496.244000pt;}
.y1f4{bottom:497.025333pt;}
.y138{bottom:498.818667pt;}
.y26a{bottom:499.748000pt;}
.ye7{bottom:502.193333pt;}
.y21c{bottom:502.298667pt;}
.y2e7{bottom:502.570667pt;}
.ya9{bottom:502.804000pt;}
.y25{bottom:504.544000pt;}
.y2aa{bottom:506.296000pt;}
.y335{bottom:507.668000pt;}
.y6c{bottom:508.376000pt;}
.y117{bottom:508.941333pt;}
.y18d{bottom:510.241333pt;}
.y137{bottom:510.242667pt;}
.y1f3{bottom:510.818667pt;}
.y269{bottom:513.568000pt;}
.y2e6{bottom:513.994667pt;}
.y21b{bottom:515.830667pt;}
.ya8{bottom:516.722667pt;}
.y24{bottom:517.296000pt;}
.y1c9{bottom:518.018667pt;}
.y334{bottom:519.090667pt;}
.y354{bottom:519.092000pt;}
.y2a9{bottom:520.686667pt;}
.y136{bottom:521.666667pt;}
.y116{bottom:523.108000pt;}
.y6b{bottom:523.652000pt;}
.y18c{bottom:524.265333pt;}
.y1f2{bottom:524.612000pt;}
.y2e5{bottom:525.418667pt;}
.y268{bottom:527.388000pt;}
.y21a{bottom:529.361333pt;}
.ye6{bottom:529.665333pt;}
.y23{bottom:530.048000pt;}
.y333{bottom:530.514667pt;}
.y353{bottom:530.516000pt;}
.ya7{bottom:530.642667pt;}
.y1c8{bottom:532.169333pt;}
.y135{bottom:533.090667pt;}
.y2a8{bottom:535.960000pt;}
.y2e4{bottom:536.638667pt;}
.y115{bottom:537.129333pt;}
.y18b{bottom:538.290667pt;}
.y1f1{bottom:538.405333pt;}
.y6a{bottom:538.928000pt;}
.y267{bottom:541.208000pt;}
.y332{bottom:541.938667pt;}
.y352{bottom:541.940000pt;}
.y22{bottom:542.800000pt;}
.y219{bottom:542.893333pt;}
.ye5{bottom:543.508000pt;}
.ya6{bottom:544.561333pt;}
.y1c7{bottom:546.321333pt;}
.y2e3{bottom:548.062667pt;}
.y2a7{bottom:550.349333pt;}
.y114{bottom:551.150667pt;}
.y1f0{bottom:552.197333pt;}
.y18a{bottom:552.314667pt;}
.y331{bottom:553.362667pt;}
.y69{bottom:554.204000pt;}
.y266{bottom:555.029333pt;}
.y21{bottom:555.552000pt;}
.y218{bottom:556.425333pt;}
.ya5{bottom:558.480000pt;}
.y2e2{bottom:559.486667pt;}
.y1c6{bottom:560.473333pt;}
.y19{bottom:564.013333pt;}
.y2a6{bottom:564.738667pt;}
.y330{bottom:564.786667pt;}
.y113{bottom:565.170667pt;}
.y1ef{bottom:565.990667pt;}
.y20{bottom:568.304000pt;}
.y265{bottom:568.849333pt;}
.y188{bottom:569.230667pt;}
.y68{bottom:569.480000pt;}
.y217{bottom:569.957333pt;}
.y2e1{bottom:570.910667pt;}
.ye4{bottom:571.085333pt;}
.ya4{bottom:572.398667pt;}
.y18{bottom:575.437333pt;}
.y32f{bottom:576.210667pt;}
.y2a5{bottom:579.128000pt;}
.y112{bottom:579.192000pt;}
.y1c5{bottom:579.408000pt;}
.y1ee{bottom:579.784000pt;}
.y189{bottom:580.800000pt;}
.y1f{bottom:581.056000pt;}
.y2e0{bottom:582.130667pt;}
.y264{bottom:582.669333pt;}
.y216{bottom:583.489333pt;}
.y67{bottom:584.756000pt;}
.ya3{bottom:586.317333pt;}
.y1c4{bottom:586.846667pt;}
.y17{bottom:586.861333pt;}
.y32e{bottom:587.634667pt;}
.y187{bottom:590.489333pt;}
.y111{bottom:593.213333pt;}
.y2a4{bottom:593.517333pt;}
.y2df{bottom:593.554667pt;}
.y1ed{bottom:593.577333pt;}
.y1e{bottom:593.809333pt;}
.y263{bottom:596.489333pt;}
.y16{bottom:598.285333pt;}
.ye3{bottom:598.346667pt;}
.y32d{bottom:599.058667pt;}
.y66{bottom:600.032000pt;}
.ya2{bottom:600.236000pt;}
.y2de{bottom:604.977333pt;}
.y186{bottom:606.305333pt;}
.y1d{bottom:606.561333pt;}
.y110{bottom:607.234667pt;}
.y1ec{bottom:607.369333pt;}
.y2a3{bottom:607.908000pt;}
.y15{bottom:609.708000pt;}
.y215{bottom:610.136000pt;}
.y262{bottom:610.309333pt;}
.y32c{bottom:610.481333pt;}
.y351{bottom:610.482667pt;}
.y1c3{bottom:610.902667pt;}
.ye2{bottom:612.189333pt;}
.ya1{bottom:614.154667pt;}
.y65{bottom:615.308000pt;}
.y2dd{bottom:616.197333pt;}
.y1c{bottom:619.313333pt;}
.y185{bottom:620.329333pt;}
.y14{bottom:621.132000pt;}
.y1eb{bottom:621.162667pt;}
.y10f{bottom:621.254667pt;}
.y32b{bottom:621.905333pt;}
.y350{bottom:621.906667pt;}
.y2a2{bottom:622.297333pt;}
.y1c2{bottom:625.053333pt;}
.ye1{bottom:626.030667pt;}
.y2dc{bottom:627.621333pt;}
.ya0{bottom:628.073333pt;}
.y64{bottom:630.584000pt;}
.y1b{bottom:632.065333pt;}
.y13{bottom:632.556000pt;}
.y32a{bottom:633.329333pt;}
.y34f{bottom:633.330667pt;}
.y1ea{bottom:634.956000pt;}
.y10e{bottom:635.276000pt;}
.y214{bottom:636.368000pt;}
.y2a1{bottom:636.686667pt;}
.y2db{bottom:638.841333pt;}
.ye0{bottom:639.873333pt;}
.y24b{bottom:640.524000pt;}
.y9f{bottom:641.992000pt;}
.y1c1{bottom:642.478667pt;}
.y63{bottom:644.532000pt;}
.y329{bottom:644.753333pt;}
.y184{bottom:645.288000pt;}
.y1e9{bottom:648.748000pt;}
.y10d{bottom:649.297333pt;}
.y213{bottom:649.900000pt;}
.y2da{bottom:650.265333pt;}
.y2a0{bottom:651.076000pt;}
.ydf{bottom:653.714667pt;}
.y1be{bottom:654.672000pt;}
.y9e{bottom:655.912000pt;}
.y328{bottom:656.177333pt;}
.y12{bottom:657.445333pt;}
.y1a{bottom:657.485333pt;}
.y28a{bottom:659.310667pt;}
.y183{bottom:659.312000pt;}
.y62{bottom:659.808000pt;}
.y2d9{bottom:661.485333pt;}
.y1e8{bottom:662.541333pt;}
.y10c{bottom:663.318667pt;}
.y212{bottom:663.432000pt;}
.y1c0{bottom:664.361333pt;}
.y29f{bottom:665.466667pt;}
.yde{bottom:667.557333pt;}
.y327{bottom:667.601333pt;}
.y1bf{bottom:668.250667pt;}
.y9d{bottom:669.830667pt;}
.y289{bottom:670.733333pt;}
.y2d8{bottom:672.909333pt;}
.y182{bottom:673.337333pt;}
.y1e7{bottom:676.334667pt;}
.y211{bottom:676.964000pt;}
.y10b{bottom:677.338667pt;}
.y326{bottom:679.025333pt;}
.y29e{bottom:679.856000pt;}
.ydd{bottom:681.398667pt;}
.y61{bottom:681.725333pt;}
.y1bd{bottom:683.165333pt;}
.y9c{bottom:683.749333pt;}
.y2d7{bottom:684.333333pt;}
.y181{bottom:687.361333pt;}
.y1e6{bottom:690.128000pt;}
.y325{bottom:690.449333pt;}
.y210{bottom:690.496000pt;}
.y10a{bottom:691.360000pt;}
.y29d{bottom:694.245333pt;}
.ydc{bottom:695.241333pt;}
.y2d6{bottom:695.553333pt;}
.y1bc{bottom:697.316000pt;}
.y9b{bottom:697.668000pt;}
.y11{bottom:698.213333pt;}
.y180{bottom:701.386667pt;}
.y324{bottom:701.872000pt;}
.y34e{bottom:701.873333pt;}
.y60{bottom:703.644000pt;}
.y20f{bottom:704.026667pt;}
.y109{bottom:705.381333pt;}
.y2d5{bottom:706.976000pt;}
.y29c{bottom:708.634667pt;}
.ydb{bottom:709.082667pt;}
.y10{bottom:709.636000pt;}
.y1bb{bottom:711.468000pt;}
.y9a{bottom:711.586667pt;}
.y323{bottom:713.296000pt;}
.y34d{bottom:713.297333pt;}
.y17f{bottom:715.410667pt;}
.y1e5{bottom:717.558667pt;}
.y2d4{bottom:718.400000pt;}
.y5f{bottom:718.920000pt;}
.y108{bottom:719.401333pt;}
.yf{bottom:721.060000pt;}
.yda{bottom:722.925333pt;}
.y29b{bottom:723.024000pt;}
.y322{bottom:724.720000pt;}
.y99{bottom:725.505333pt;}
.y1ba{bottom:725.618667pt;}
.y17e{bottom:729.434667pt;}
.y2d3{bottom:729.620000pt;}
.ye{bottom:732.484000pt;}
.y107{bottom:733.422667pt;}
.y5e{bottom:734.196000pt;}
.y321{bottom:736.144000pt;}
.yd9{bottom:736.766667pt;}
.y29a{bottom:737.414667pt;}
.y98{bottom:739.424000pt;}
.y2d2{bottom:741.044000pt;}
.y17d{bottom:743.460000pt;}
.yd{bottom:743.908000pt;}
.y1b8{bottom:744.872000pt;}
.y320{bottom:747.568000pt;}
.y106{bottom:747.604000pt;}
.y1e4{bottom:747.773333pt;}
.y5d{bottom:749.472000pt;}
.yd8{bottom:750.609333pt;}
.y299{bottom:751.804000pt;}
.y2d1{bottom:752.264000pt;}
.y1b7{bottom:752.310667pt;}
.y97{bottom:753.342667pt;}
.yc{bottom:757.669333pt;}
.y17c{bottom:757.830667pt;}
.y31f{bottom:758.992000pt;}
.y1b9{bottom:761.224000pt;}
.y2d0{bottom:763.688000pt;}
.yd7{bottom:764.450667pt;}
.y5c{bottom:764.748000pt;}
.y96{bottom:767.262667pt;}
.y31e{bottom:770.416000pt;}
.y17b{bottom:771.856000pt;}
.yb{bottom:774.938667pt;}
.y2cf{bottom:775.112000pt;}
.y105{bottom:776.525333pt;}
.yd6{bottom:778.293333pt;}
.y5b{bottom:780.024000pt;}
.y95{bottom:781.181333pt;}
.y31d{bottom:781.840000pt;}
.y298{bottom:783.676000pt;}
.y1b6{bottom:784.272000pt;}
.y17a{bottom:785.880000pt;}
.y2ce{bottom:786.332000pt;}
.y104{bottom:790.896000pt;}
.yd5{bottom:792.134667pt;}
.y31c{bottom:793.262667pt;}
.y34c{bottom:793.264000pt;}
.y94{bottom:795.100000pt;}
.y5a{bottom:795.300000pt;}
.y2cd{bottom:797.754667pt;}
.y1b5{bottom:798.424000pt;}
.ya{bottom:799.121333pt;}
.y179{bottom:799.905333pt;}
.y31b{bottom:804.686667pt;}
.y34b{bottom:804.688000pt;}
.y103{bottom:804.917333pt;}
.yd4{bottom:805.977333pt;}
.y93{bottom:809.018667pt;}
.y2cc{bottom:809.178667pt;}
.y59{bottom:809.248000pt;}
.y1b4{bottom:812.576000pt;}
.y178{bottom:813.929333pt;}
.y31a{bottom:816.110667pt;}
.y297{bottom:817.758667pt;}
.y102{bottom:819.289333pt;}
.yd3{bottom:819.818667pt;}
.y2cb{bottom:820.398667pt;}
.y9{bottom:822.102667pt;}
.y92{bottom:822.937333pt;}
.y58{bottom:824.524000pt;}
.y319{bottom:827.534667pt;}
.y177{bottom:827.953333pt;}
.y1b3{bottom:831.585333pt;}
.y2ca{bottom:831.822667pt;}
.y296{bottom:832.148000pt;}
.yd2{bottom:833.661333pt;}
.y91{bottom:836.856000pt;}
.y318{bottom:838.958667pt;}
.y1b1{bottom:839.024000pt;}
.y57{bottom:839.800000pt;}
.y176{bottom:841.978667pt;}
.y2c9{bottom:843.042667pt;}
.y295{bottom:846.537333pt;}
.y1b2{bottom:846.868000pt;}
.y317{bottom:850.382667pt;}
.y90{bottom:850.774667pt;}
.y2c8{bottom:854.466667pt;}
.y56{bottom:855.076000pt;}
.y294{bottom:860.928000pt;}
.y316{bottom:861.806667pt;}
.y8f{bottom:864.693333pt;}
.y1b0{bottom:864.924000pt;}
.yd1{bottom:867.700000pt;}
.y55{bottom:870.352000pt;}
.y315{bottom:873.230667pt;}
.y293{bottom:875.317333pt;}
.y8e{bottom:878.613333pt;}
.y1af{bottom:879.076000pt;}
.yd0{bottom:879.124000pt;}
.y2c7{bottom:879.634667pt;}
.y314{bottom:884.653333pt;}
.y34a{bottom:884.654667pt;}
.y54{bottom:885.628000pt;}
.y292{bottom:889.706667pt;}
.ycf{bottom:890.548000pt;}
.y175{bottom:890.629333pt;}
.y8d{bottom:892.532000pt;}
.y8{bottom:892.865333pt;}
.y313{bottom:896.077333pt;}
.y349{bottom:896.078667pt;}
.y1ab{bottom:898.086667pt;}
.y53{bottom:900.904000pt;}
.yce{bottom:901.972000pt;}
.y174{bottom:902.053333pt;}
.y291{bottom:904.096000pt;}
.y1ac{bottom:905.525333pt;}
.y8c{bottom:906.450667pt;}
.y2c6{bottom:906.917333pt;}
.y312{bottom:907.501333pt;}
.y1ae{bottom:908.996000pt;}
.y1aa{bottom:913.369333pt;}
.ycd{bottom:913.396000pt;}
.y173{bottom:913.477333pt;}
.y52{bottom:916.180000pt;}
.y1ad{bottom:917.877333pt;}
.y290{bottom:918.486667pt;}
.y311{bottom:918.925333pt;}
.y8b{bottom:920.369333pt;}
.y2c5{bottom:920.764000pt;}
.ycc{bottom:924.820000pt;}
.y172{bottom:924.901333pt;}
.y7{bottom:928.396000pt;}
.y51{bottom:930.128000pt;}
.y310{bottom:930.349333pt;}
.y28f{bottom:932.876000pt;}
.y1a9{bottom:933.590667pt;}
.y8a{bottom:934.288000pt;}
.y2c4{bottom:934.609333pt;}
.ycb{bottom:936.242667pt;}
.y171{bottom:936.325333pt;}
.y30f{bottom:941.773333pt;}
.y50{bottom:945.404000pt;}
.y28e{bottom:947.265333pt;}
.y1a8{bottom:947.741333pt;}
.y89{bottom:948.206667pt;}
.y2c3{bottom:948.454667pt;}
.yca{bottom:952.086667pt;}
.y170{bottom:952.168000pt;}
.y30e{bottom:953.197333pt;}
.y28d{bottom:961.654667pt;}
.y1a7{bottom:961.893333pt;}
.y88{bottom:962.125333pt;}
.y30d{bottom:964.620000pt;}
.y348{bottom:964.621333pt;}
.y6{bottom:966.046667pt;}
.yc9{bottom:966.436000pt;}
.y4f{bottom:967.321333pt;}
.y87{bottom:976.044000pt;}
.y347{bottom:976.045333pt;}
.yc8{bottom:977.860000pt;}
.y2{bottom:1002.226667pt;}
.y4c{bottom:1003.226667pt;}
.y4e{bottom:1003.421333pt;}
.h1c{height:2.805475pt;}
.h20{height:18.862523pt;}
.h1d{height:21.774404pt;}
.ha{height:21.792969pt;}
.h24{height:22.635179pt;}
.h21{height:25.033837pt;}
.h10{height:26.407456pt;}
.h1a{height:29.032418pt;}
.h11{height:29.887500pt;}
.hc{height:29.887969pt;}
.h1b{height:30.180112pt;}
.h6{height:30.647691pt;}
.hd{height:31.133301pt;}
.h3{height:33.623437pt;}
.he{height:35.024902pt;}
.hf{height:37.359844pt;}
.h4{height:38.916504pt;}
.h26{height:39.637845pt;}
.hb{height:43.781250pt;}
.h25{height:53.683084pt;}
.h9{height:53.769091pt;}
.h15{height:53.791171pt;}
.h29{height:53.796504pt;}
.h14{height:54.512512pt;}
.h28{height:54.517845pt;}
.h16{height:54.830779pt;}
.h27{height:55.488512pt;}
.h8{height:55.806727pt;}
.h17{height:57.299084pt;}
.h1f{height:59.934779pt;}
.h2a{height:60.440418pt;}
.h19{height:61.252112pt;}
.h1e{height:61.556112pt;}
.h22{height:62.912142pt;}
.h7{height:65.671875pt;}
.h5{height:68.104004pt;}
.h18{height:68.671171pt;}
.h12{height:68.923179pt;}
.h13{height:69.392512pt;}
.h23{height:114.878523pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.x43{left:51.993333pt;}
.x29{left:55.742667pt;}
.x8{left:59.201333pt;}
.xe{left:63.932000pt;}
.x7{left:66.057333pt;}
.x11{left:67.728000pt;}
.x9{left:70.041333pt;}
.x18{left:73.049333pt;}
.x44{left:75.396000pt;}
.x12{left:81.997333pt;}
.x17{left:93.480000pt;}
.x26{left:96.146667pt;}
.x28{left:100.420000pt;}
.x3c{left:130.354667pt;}
.x3e{left:132.797333pt;}
.xf{left:164.886667pt;}
.x3a{left:167.418667pt;}
.x10{left:170.584000pt;}
.x3d{left:193.533333pt;}
.x40{left:202.046667pt;}
.x3f{left:232.754667pt;}
.x4{left:249.264000pt;}
.x27{left:250.330667pt;}
.x5{left:257.025333pt;}
.x6{left:269.329333pt;}
.x1{left:275.663981pt;}
.x3{left:303.392000pt;}
.x3b{left:364.938667pt;}
.x41{left:392.557314pt;}
.xd{left:394.943981pt;}
.xa{left:408.805333pt;}
.x2a{left:410.400000pt;}
.x2b{left:412.392000pt;}
.x42{left:415.468000pt;}
.xb{left:424.745333pt;}
.x13{left:426.873333pt;}
.x1e{left:434.020000pt;}
.x2c{left:435.057333pt;}
.x37{left:439.672000pt;}
.x34{left:445.740000pt;}
.x35{left:446.642667pt;}
.x19{left:448.124000pt;}
.x2d{left:449.538667pt;}
.x31{left:451.640000pt;}
.x14{left:454.736000pt;}
.x30{left:455.834667pt;}
.x22{left:459.808000pt;}
.x36{left:461.240000pt;}
.x20{left:463.286667pt;}
.x24{left:464.577333pt;}
.x1f{left:468.909333pt;}
.x32{left:472.782667pt;}
.x1c{left:476.374667pt;}
.x33{left:480.132000pt;}
.x1b{left:481.997333pt;}
.x15{left:485.390667pt;}
.x39{left:492.657333pt;}
.x38{left:499.389333pt;}
.x23{left:533.513333pt;}
.xc{left:538.743981pt;}
.x16{left:542.109333pt;}
.x2e{left:545.786667pt;}
.x2f{left:559.436000pt;}
.x21{left:564.142667pt;}
.x25{left:566.666667pt;}
.x1d{left:574.212000pt;}
.x1a{left:729.610667pt;}
}




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