
    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_668d8b1f82592290e5b5c529.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_3a6ed98056f083e04aeddbcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.470000;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_fe77389d402afad2444abd38.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.175000;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_a73253c0b1b812c84bf0880b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_25df1113d96173cb36373804.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3a49e50244bf0ba78929b013.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.452000;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_889788bafff6b96757c0744a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.590000;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_2bb4e586f025000d44e94327.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689000;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_2790bfe0f719182a469c2397.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862000;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_ae223cbf29fd8eb2b36ae33a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920000;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_a04a5223bd2228b9ecc43693.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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);}
.m2{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v1{vertical-align:-3.061735px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.043747px;}
.v3{vertical-align:21.696489px;}
.ls51{letter-spacing:-0.980320px;}
.ls50{letter-spacing:-0.693397px;}
.ls67{letter-spacing:-0.038624px;}
.ls6d{letter-spacing:-0.033796px;}
.ls6e{letter-spacing:-0.029025px;}
.ls65{letter-spacing:-0.028968px;}
.ls66{letter-spacing:-0.024140px;}
.ls68{letter-spacing:-0.019312px;}
.ls6b{letter-spacing:-0.014484px;}
.ls6a{letter-spacing:-0.009656px;}
.ls69{letter-spacing:-0.004828px;}
.ls10{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.001200px;}
.ls5f{letter-spacing:0.004828px;}
.ls6c{letter-spacing:0.009656px;}
.ls60{letter-spacing:0.014484px;}
.ls63{letter-spacing:0.015380px;}
.ls5d{letter-spacing:0.019312px;}
.ls62{letter-spacing:0.023070px;}
.lsa{letter-spacing:0.023910px;}
.ls9{letter-spacing:0.047820px;}
.ls2{letter-spacing:0.051799px;}
.ls5e{letter-spacing:0.052905px;}
.ls7f{letter-spacing:0.062168px;}
.lsb{letter-spacing:0.071731px;}
.ls1{letter-spacing:0.124318px;}
.ls0{letter-spacing:0.152428px;}
.lsd{letter-spacing:0.161394px;}
.ls83{letter-spacing:0.167374px;}
.ls3{letter-spacing:0.188292px;}
.ls7c{letter-spacing:0.191285px;}
.lse{letter-spacing:0.209215px;}
.ls21{letter-spacing:0.364631px;}
.ls40{letter-spacing:0.388541px;}
.ls44{letter-spacing:0.412452px;}
.ls3a{letter-spacing:0.460272px;}
.ls3d{letter-spacing:0.466250px;}
.ls42{letter-spacing:0.496137px;}
.ls1f{letter-spacing:0.502115px;}
.ls3c{letter-spacing:0.508093px;}
.ls2c{letter-spacing:0.526025px;}
.ls1d{letter-spacing:0.532003px;}
.ls8b{letter-spacing:0.549936px;}
.ls35{letter-spacing:0.573846px;}
.ls30{letter-spacing:0.585801px;}
.ls27{letter-spacing:0.591778px;}
.ls18{letter-spacing:0.597756px;}
.ls38{letter-spacing:0.603734px;}
.ls32{letter-spacing:0.609711px;}
.ls43{letter-spacing:0.615689px;}
.ls23{letter-spacing:0.621666px;}
.ls26{letter-spacing:0.627644px;}
.ls19{letter-spacing:0.639599px;}
.ls1b{letter-spacing:0.645576px;}
.ls34{letter-spacing:0.651554px;}
.ls1e{letter-spacing:0.657532px;}
.ls2d{letter-spacing:0.663509px;}
.ls31{letter-spacing:0.669487px;}
.ls33{letter-spacing:0.675464px;}
.ls25{letter-spacing:0.681442px;}
.ls15{letter-spacing:0.687419px;}
.ls39{letter-spacing:0.693397px;}
.ls1a{letter-spacing:0.699375px;}
.ls22{letter-spacing:0.705352px;}
.ls2f{letter-spacing:0.711330px;}
.ls14{letter-spacing:0.717307px;}
.ls1c{letter-spacing:0.723285px;}
.ls20{letter-spacing:0.729262px;}
.ls2e{letter-spacing:0.735240px;}
.ls2a{letter-spacing:0.741217px;}
.ls16{letter-spacing:0.747195px;}
.ls24{letter-spacing:0.759150px;}
.ls17{letter-spacing:0.765128px;}
.ls36{letter-spacing:0.771105px;}
.ls28{letter-spacing:0.783060px;}
.ls8a{letter-spacing:0.800993px;}
.ls3b{letter-spacing:0.812948px;}
.ls2b{letter-spacing:0.842836px;}
.ls8c{letter-spacing:0.890656px;}
.ls86{letter-spacing:5.314051px;}
.ls4a{letter-spacing:5.654772px;}
.ls7{letter-spacing:5.869340px;}
.ls5b{letter-spacing:9.731468px;}
.ls4e{letter-spacing:10.412910px;}
.ls74{letter-spacing:10.753630px;}
.ls79{letter-spacing:11.118429px;}
.ls85{letter-spacing:11.261723px;}
.ls7a{letter-spacing:11.457960px;}
.lsf{letter-spacing:11.496216px;}
.ls6{letter-spacing:11.528869px;}
.ls5{letter-spacing:11.652603px;}
.ls8{letter-spacing:11.873174px;}
.ls49{letter-spacing:11.937187px;}
.ls55{letter-spacing:12.116514px;}
.ls59{letter-spacing:12.797956px;}
.ls72{letter-spacing:13.138677px;}
.ls80{letter-spacing:13.155612px;}
.ls84{letter-spacing:13.165176px;}
.ls7e{letter-spacing:13.227344px;}
.ls82{letter-spacing:13.232126px;}
.ls81{letter-spacing:13.571657px;}
.ls90{letter-spacing:13.911187px;}
.ls57{letter-spacing:14.495583px;}
.ls4c{letter-spacing:15.177025px;}
.ls5a{letter-spacing:16.019861px;}
.ls73{letter-spacing:16.701303px;}
.ls37{letter-spacing:16.832809px;}
.ls88{letter-spacing:16.874652px;}
.ls4{letter-spacing:16.973206px;}
.ls4d{letter-spacing:17.042024px;}
.ls53{letter-spacing:17.053979px;}
.ls78{letter-spacing:17.215373px;}
.ls48{letter-spacing:17.382744px;}
.ls52{letter-spacing:17.735421px;}
.ls54{letter-spacing:18.064186px;}
.ls8f{letter-spacing:18.416862px;}
.ls58{letter-spacing:19.080372px;}
.ls12{letter-spacing:19.361828px;}
.ls46{letter-spacing:19.409137px;}
.ls71{letter-spacing:19.421092px;}
.ls47{letter-spacing:19.749858px;}
.lsc{letter-spacing:20.234041px;}
.ls56{letter-spacing:20.783976px;}
.ls4b{letter-spacing:21.465418px;}
.ls11{letter-spacing:21.735207px;}
.ls76{letter-spacing:21.979488px;}
.ls87{letter-spacing:23.163045px;}
.ls77{letter-spacing:23.503766px;}
.ls8d{letter-spacing:23.856442px;}
.ls5c{letter-spacing:24.197163px;}
.ls13{letter-spacing:25.560047px;}
.ls45{letter-spacing:27.425045px;}
.ls75{letter-spacing:28.267881px;}
.ls64{letter-spacing:28.279836px;}
.ls89{letter-spacing:29.636742px;}
.ls70{letter-spacing:29.804114px;}
.ls91{letter-spacing:30.658905px;}
.ls3f{letter-spacing:32.081565px;}
.ls8e{letter-spacing:32.362510px;}
.ls41{letter-spacing:35.763741px;}
.ls29{letter-spacing:36.397363px;}
.ls6f{letter-spacing:36.433228px;}
.ls4f{letter-spacing:53.792062px;}
.ls3e{letter-spacing:56.631403px;}
.ls7b{letter-spacing:470.402798px;}
.ls7d{letter-spacing:845.598369px;}
.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;}
}
.ws89{word-spacing:-56.691179px;}
.ws109{word-spacing:-53.851838px;}
.wsb3{word-spacing:-35.823517px;}
.ws249{word-spacing:-32.422285px;}
.wsa6{word-spacing:-32.141340px;}
.ws275{word-spacing:-30.718681px;}
.ws1fe{word-spacing:-29.696518px;}
.ws167{word-spacing:-28.339612px;}
.ws49{word-spacing:-25.619822px;}
.ws1f5{word-spacing:-23.916218px;}
.ws3f{word-spacing:-20.293816px;}
.ws25{word-spacing:-19.415626px;}
.ws255{word-spacing:-18.476638px;}
.ws150{word-spacing:-17.795196px;}
.ws15e{word-spacing:-17.113754px;}
.ws1d2{word-spacing:-13.212998px;}
.ws246{word-spacing:-0.860769px;}
.ws6d{word-spacing:-0.789038px;}
.ws69{word-spacing:-0.783060px;}
.ws248{word-spacing:-0.741217px;}
.ws8e{word-spacing:-0.681442px;}
.wsdb{word-spacing:-0.645576px;}
.ws88{word-spacing:-0.526025px;}
.wsad{word-spacing:-0.448317px;}
.ws187{word-spacing:-0.333129px;}
.ws191{word-spacing:-0.280022px;}
.ws19b{word-spacing:-0.178635px;}
.ws19d{word-spacing:-0.120699px;}
.ws194{word-spacing:-0.115871px;}
.ws18a{word-spacing:-0.115349px;}
.ws19a{word-spacing:-0.111043px;}
.ws186{word-spacing:-0.086903px;}
.ws19c{word-spacing:-0.082075px;}
.ws5{word-spacing:-0.077709px;}
.ws183{word-spacing:-0.062763px;}
.ws3e{word-spacing:-0.059776px;}
.ws18e{word-spacing:-0.057936px;}
.ws23{word-spacing:-0.053798px;}
.ws198{word-spacing:-0.053108px;}
.ws7{word-spacing:-0.051799px;}
.ws181{word-spacing:-0.048280px;}
.ws10{word-spacing:-0.047821px;}
.ws190{word-spacing:-0.043452px;}
.ws18c{word-spacing:-0.028968px;}
.ws18b{word-spacing:-0.023070px;}
.ws180{word-spacing:-0.019312px;}
.ws184{word-spacing:-0.004828px;}
.ws57{word-spacing:0.000000px;}
.ws195{word-spacing:0.004828px;}
.ws185{word-spacing:0.009656px;}
.ws199{word-spacing:0.014484px;}
.ws196{word-spacing:0.019312px;}
.ws188{word-spacing:0.024140px;}
.ws192{word-spacing:0.029025px;}
.ws189{word-spacing:0.033796px;}
.ws182{word-spacing:0.038624px;}
.ws18d{word-spacing:0.048280px;}
.ws193{word-spacing:0.053108px;}
.ws197{word-spacing:0.062763px;}
.ws18f{word-spacing:0.096559px;}
.ws28d{word-spacing:7.732688px;}
.ws2c6{word-spacing:8.316107px;}
.ws292{word-spacing:8.411749px;}
.ws2cb{word-spacing:8.416531px;}
.ws299{word-spacing:8.426095px;}
.ws295{word-spacing:8.655637px;}
.ws2b3{word-spacing:8.736933px;}
.ws2cd{word-spacing:8.741715px;}
.ws2d5{word-spacing:8.765626px;}
.ws29a{word-spacing:8.827794px;}
.ws1cd{word-spacing:8.899525px;}
.ws283{word-spacing:8.995168px;}
.ws148{word-spacing:9.217398px;}
.ws29b{word-spacing:9.234274px;}
.ws1cb{word-spacing:9.239056px;}
.ws280{word-spacing:9.258184px;}
.ws1c5{word-spacing:9.353827px;}
.ws1c6{word-spacing:9.511637px;}
.ws2cc{word-spacing:9.573804px;}
.ws147{word-spacing:9.719513px;}
.ws1e8{word-spacing:9.731614px;}
.ws1e7{word-spacing:9.755525px;}
.ws2d9{word-spacing:9.784218px;}
.ws2de{word-spacing:9.836821px;}
.ws2d3{word-spacing:9.956374px;}
.ws126{word-spacing:9.958615px;}
.ws146{word-spacing:10.006435px;}
.ws1e4{word-spacing:10.071145px;}
.ws2eb{word-spacing:10.123748px;}
.ws294{word-spacing:10.185916px;}
.ws1e5{word-spacing:10.248083px;}
.ws1d{word-spacing:10.302279px;}
.ws2f{word-spacing:10.415254px;}
.ws1e6{word-spacing:10.501536px;}
.ws1d5{word-spacing:10.520664px;}
.ws2d4{word-spacing:10.578049px;}
.ws12c{word-spacing:10.640057px;}
.ws1f0{word-spacing:10.693855px;}
.ws10d{word-spacing:10.729720px;}
.ws2b5{word-spacing:10.735859px;}
.ws1c{word-spacing:10.748800px;}
.ws28f{word-spacing:10.759770px;}
.ws286{word-spacing:10.793245px;}
.ws29d{word-spacing:10.826720px;}
.ws127{word-spacing:10.891114px;}
.ws29e{word-spacing:11.080172px;}
.ws2b6{word-spacing:11.094518px;}
.ws54{word-spacing:11.132775px;}
.ws2e0{word-spacing:11.137557px;}
.ws29{word-spacing:11.173803px;}
.wse3{word-spacing:11.189992px;}
.ws2dd{word-spacing:11.190161px;}
.ws216{word-spacing:11.231835px;}
.ws11d{word-spacing:11.255745px;}
.ws1ef{word-spacing:11.327476px;}
.ws125{word-spacing:11.375297px;}
.ws285{word-spacing:11.467524px;}
.ws1e0{word-spacing:11.520127px;}
.ws159{word-spacing:11.548646px;}
.ws253{word-spacing:11.554623px;}
.wsf2{word-spacing:11.572556px;}
.wse8{word-spacing:11.638309px;}
.ws2bb{word-spacing:11.711412px;}
.ws15a{word-spacing:11.805681px;}
.ws2a2{word-spacing:11.821401px;}
.ws270{word-spacing:11.835569px;}
.ws1a4{word-spacing:11.889367px;}
.ws158{word-spacing:11.913277px;}
.wse7{word-spacing:11.949142px;}
.ws1a6{word-spacing:12.008918px;}
.ws157{word-spacing:12.080649px;}
.ws118{word-spacing:12.086626px;}
.ws1a5{word-spacing:12.122492px;}
.ws10c{word-spacing:12.189045px;}
.ws2a4{word-spacing:12.223099px;}
.ws2e{word-spacing:12.228240px;}
.wsf3{word-spacing:12.230088px;}
.ws20f{word-spacing:12.253998px;}
.ws28c{word-spacing:12.390473px;}
.ws137{word-spacing:12.427347px;}
.ws51{word-spacing:12.500462px;}
.ws1c3{word-spacing:12.543501px;}
.ws2da{word-spacing:12.624797px;}
.ws279{word-spacing:12.642539px;}
.ws1ee{word-spacing:12.658272px;}
.ws1ea{word-spacing:12.667836px;}
.ws15{word-spacing:12.672618px;}
.ws2e2{word-spacing:12.696529px;}
.ws2a7{word-spacing:12.734786px;}
.ws4d{word-spacing:12.738180px;}
.ws2b4{word-spacing:12.763478px;}
.ws1e2{word-spacing:12.768260px;}
.ws2d6{word-spacing:12.777825px;}
.wsa{word-spacing:12.787389px;}
.ws1d3{word-spacing:12.796953px;}
.wsf6{word-spacing:12.797956px;}
.ws52{word-spacing:12.806517px;}
.ws2e5{word-spacing:12.811299px;}
.ws1df{word-spacing:12.820864px;}
.ws2a5{word-spacing:12.839992px;}
.wse{word-spacing:12.844774px;}
.ws1d9{word-spacing:12.868685px;}
.ws1dc{word-spacing:12.873467px;}
.ws1dd{word-spacing:12.878249px;}
.ws55{word-spacing:12.887813px;}
.ws1d7{word-spacing:12.892596px;}
.ws1c7{word-spacing:12.897378px;}
.ws1db{word-spacing:12.902160px;}
.ws116{word-spacing:12.911530px;}
.ws1c8{word-spacing:12.911724px;}
.ws13{word-spacing:12.916506px;}
.ws31{word-spacing:12.921288px;}
.wsee{word-spacing:12.929462px;}
.ws1d6{word-spacing:12.930852px;}
.ws220{word-spacing:12.935440px;}
.ws2ab{word-spacing:12.935635px;}
.ws53{word-spacing:12.940417px;}
.ws2c1{word-spacing:12.945199px;}
.wsf5{word-spacing:12.947395px;}
.ws1d4{word-spacing:12.949981px;}
.ws17f{word-spacing:12.954763px;}
.ws1ca{word-spacing:12.964327px;}
.ws1e1{word-spacing:12.969109px;}
.ws2b7{word-spacing:12.983456px;}
.ws2d2{word-spacing:12.988238px;}
.ws17{word-spacing:12.993020px;}
.ws1d8{word-spacing:13.007366px;}
.ws1eb{word-spacing:13.012149px;}
.wsf{word-spacing:13.016931px;}
.ws32{word-spacing:13.026495px;}
.ws297{word-spacing:13.036059px;}
.ws1c2{word-spacing:13.050405px;}
.ws2e3{word-spacing:13.064752px;}
.ws12{word-spacing:13.069534px;}
.ws14c{word-spacing:13.072924px;}
.wsd{word-spacing:13.083880px;}
.ws2ec{word-spacing:13.103009px;}
.wsb{word-spacing:13.117355px;}
.ws293{word-spacing:13.136484px;}
.ws282{word-spacing:13.141266px;}
.ws1e9{word-spacing:13.150830px;}
.ws1de{word-spacing:13.160394px;}
.ws35{word-spacing:13.168565px;}
.ws16{word-spacing:13.169958px;}
.ws29f{word-spacing:13.174741px;}
.ws1ec{word-spacing:13.184305px;}
.ws2d8{word-spacing:13.189087px;}
.ws1ed{word-spacing:13.193869px;}
.ws1e3{word-spacing:13.203433px;}
.ws1da{word-spacing:13.208215px;}
.ws1c9{word-spacing:13.251255px;}
.ws138{word-spacing:13.252251px;}
.ws2ea{word-spacing:13.256037px;}
.ws56{word-spacing:13.289511px;}
.ws1d0{word-spacing:13.308640px;}
.ws2d7{word-spacing:13.332551px;}
.ws1c4{word-spacing:13.337333px;}
.wsc{word-spacing:13.409064px;}
.ws2a3{word-spacing:13.452104px;}
.ws11{word-spacing:13.456886px;}
.ws1aa{word-spacing:13.461465px;}
.ws290{word-spacing:13.495143px;}
.ws212{word-spacing:13.509286px;}
.ws14{word-spacing:13.509489px;}
.ws2b9{word-spacing:13.624260px;}
.ws2a1{word-spacing:13.705556px;}
.wsce{word-spacing:13.748388px;}
.ws211{word-spacing:13.838051px;}
.ws2ba{word-spacing:13.844237px;}
.ws26d{word-spacing:13.909782px;}
.ws12e{word-spacing:13.939670px;}
.wscf{word-spacing:13.951625px;}
.wsef{word-spacing:13.957603px;}
.ws2e8{word-spacing:14.021176px;}
.ws21{word-spacing:14.025086px;}
.ws2e4{word-spacing:14.030740px;}
.ws1ad{word-spacing:14.083131px;}
.ws12f{word-spacing:14.142907px;}
.ws1f1{word-spacing:14.154862px;}
.ws13d{word-spacing:14.250503px;}
.ws12d{word-spacing:14.280391px;}
.ws121{word-spacing:14.382009px;}
.ws14a{word-spacing:14.423852px;}
.ws257{word-spacing:14.435807px;}
.ws2ef{word-spacing:14.532863px;}
.wsba{word-spacing:14.537426px;}
.ws28a{word-spacing:14.547209px;}
.ws14b{word-spacing:14.591224px;}
.wsed{word-spacing:14.609157px;}
.ws25f{word-spacing:14.633067px;}
.ws2b{word-spacing:14.724458px;}
.ws13f{word-spacing:14.764573px;}
.ws149{word-spacing:14.776528px;}
.ws101{word-spacing:14.788483px;}
.ws2db{word-spacing:14.819790px;}
.ws2d{word-spacing:14.837433px;}
.ws2e7{word-spacing:14.881957px;}
.ws2c{word-spacing:14.885851px;}
.ws13e{word-spacing:14.908035px;}
.ws227{word-spacing:14.919990px;}
.ws226{word-spacing:14.931945px;}
.ws131{word-spacing:14.997698px;}
.ws2ca{word-spacing:15.039767px;}
.ws1a{word-spacing:15.063384px;}
.ws291{word-spacing:15.078024px;}
.ws2d1{word-spacing:15.082806px;}
.ws11b{word-spacing:15.117249px;}
.ws2a6{word-spacing:15.197577px;}
.ws12b{word-spacing:15.272666px;}
.ws34{word-spacing:15.314509px;}
.ws64{word-spacing:15.362329px;}
.ws272{word-spacing:15.398195px;}
.ws21a{word-spacing:15.463948px;}
.ws36{word-spacing:15.469925px;}
.ws23c{word-spacing:15.511768px;}
.ws2e1{word-spacing:15.565801px;}
.ws1fb{word-spacing:15.571544px;}
.wsf1{word-spacing:15.631319px;}
.ws12a{word-spacing:15.738915px;}
.ws117{word-spacing:15.798691px;}
.wsf0{word-spacing:15.834556px;}
.ws231{word-spacing:15.846512px;}
.ws23b{word-spacing:15.870422px;}
.ws10f{word-spacing:15.960085px;}
.ws75{word-spacing:15.972040px;}
.ws132{word-spacing:15.995951px;}
.ws2dc{word-spacing:16.020102px;}
.ws19{word-spacing:16.096302px;}
.ws178{word-spacing:16.115502px;}
.ws225{word-spacing:16.127457px;}
.wsc9{word-spacing:16.133434px;}
.ws20{word-spacing:16.133960px;}
.ws177{word-spacing:16.151367px;}
.wsd0{word-spacing:16.205165px;}
.ws134{word-spacing:16.217120px;}
.ws176{word-spacing:16.300806px;}
.ws2c5{word-spacing:16.307029px;}
.ws133{word-spacing:16.336671px;}
.ws288{word-spacing:16.369197px;}
.ws1e{word-spacing:16.381430px;}
.ws2d0{word-spacing:16.407454px;}
.ws2b0{word-spacing:16.426582px;}
.wsbc{word-spacing:16.444268px;}
.ws29c{word-spacing:16.469621px;}
.wsd8{word-spacing:16.480133px;}
.ws23a{word-spacing:16.545886px;}
.ws1f2{word-spacing:16.569796px;}
.ws128{word-spacing:16.593707px;}
.ws26c{word-spacing:16.641527px;}
.ws13c{word-spacing:16.653482px;}
.ws1f{word-spacing:16.655799px;}
.ws11f{word-spacing:16.677392px;}
.ws1a2{word-spacing:16.683370px;}
.wsa4{word-spacing:16.719235px;}
.wsa5{word-spacing:16.731190px;}
.wsd7{word-spacing:16.755101px;}
.ws9a{word-spacing:16.761078px;}
.ws163{word-spacing:16.790966px;}
.ws1b2{word-spacing:16.796944px;}
.wsf4{word-spacing:16.802921px;}
.ws27e{word-spacing:16.814876px;}
.ws239{word-spacing:16.820854px;}
.ws1b1{word-spacing:16.826831px;}
.ws2ce{word-spacing:16.828280px;}
.ws130{word-spacing:16.838787px;}
.wsc8{word-spacing:16.844764px;}
.wsec{word-spacing:16.862697px;}
.ws1a3{word-spacing:16.874652px;}
.wsb9{word-spacing:16.922472px;}
.ws27{word-spacing:16.924788px;}
.ws164{word-spacing:16.934427px;}
.ws28{word-spacing:16.940927px;}
.wsbd{word-spacing:16.952360px;}
.ws11e{word-spacing:16.970293px;}
.ws156{word-spacing:16.998517px;}
.wscc{word-spacing:17.000181px;}
.wsb7{word-spacing:17.006158px;}
.ws10e{word-spacing:17.018113px;}
.wsd6{word-spacing:17.065934px;}
.ws9f{word-spacing:17.155597px;}
.ws15d{word-spacing:17.167552px;}
.ws39{word-spacing:17.179507px;}
.ws44{word-spacing:17.191463px;}
.wseb{word-spacing:17.203418px;}
.ws14d{word-spacing:17.215373px;}
.ws42{word-spacing:17.251238px;}
.wse9{word-spacing:17.257216px;}
.ws281{word-spacing:17.263453px;}
.ws259{word-spacing:17.322969px;}
.ws153{word-spacing:17.328946px;}
.ws38{word-spacing:17.334924px;}
.ws43{word-spacing:17.358834px;}
.ws140{word-spacing:17.376767px;}
.ws155{word-spacing:17.400677px;}
.ws2c9{word-spacing:17.445174px;}
.ws13a{word-spacing:17.484363px;}
.ws15f{word-spacing:17.508273px;}
.ws25c{word-spacing:17.544139px;}
.ws11c{word-spacing:17.675645px;}
.ws154{word-spacing:17.848994px;}
.ws1a7{word-spacing:17.884860px;}
.ws28e{word-spacing:17.889911px;}
.ws2af{word-spacing:17.937732px;}
.ws2b2{word-spacing:17.971207px;}
.ws99{word-spacing:18.016366px;}
.ws1a8{word-spacing:18.022343px;}
.ws152{word-spacing:18.070164px;}
.ws219{word-spacing:18.112007px;}
.ws21d{word-spacing:18.123962px;}
.ws16a{word-spacing:18.153850px;}
.ws19e{word-spacing:18.177760px;}
.ws1b3{word-spacing:18.273401px;}
.ws145{word-spacing:18.321221px;}
.ws122{word-spacing:18.327199px;}
.ws20a{word-spacing:18.339154px;}
.ws256{word-spacing:18.357087px;}
.ws1c1{word-spacing:18.375019px;}
.ws221{word-spacing:18.434795px;}
.ws287{word-spacing:18.458983px;}
.ws2c3{word-spacing:18.473330px;}
.ws1c0{word-spacing:18.506526px;}
.ws135{word-spacing:18.530436px;}
.wscd{word-spacing:18.554346px;}
.ws37{word-spacing:18.566301px;}
.ws169{word-spacing:18.632055px;}
.ws254{word-spacing:18.644010px;}
.wsd4{word-spacing:18.673897px;}
.ws11a{word-spacing:18.679875px;}
.ws175{word-spacing:18.691830px;}
.ws144{word-spacing:18.697808px;}
.ws19f{word-spacing:18.847247px;}
.ws174{word-spacing:18.895067px;}
.ws222{word-spacing:18.936910px;}
.wsd5{word-spacing:18.996686px;}
.ws26{word-spacing:19.044421px;}
.wsb0{word-spacing:19.056461px;}
.ws1a1{word-spacing:19.080372px;}
.ws1bd{word-spacing:19.104282px;}
.ws91{word-spacing:19.140147px;}
.ws209{word-spacing:19.164057px;}
.ws9b{word-spacing:19.187968px;}
.ws25a{word-spacing:19.199923px;}
.ws173{word-spacing:19.211878px;}
.ws22{word-spacing:19.270372px;}
.ws1be{word-spacing:19.289586px;}
.ws24{word-spacing:19.308030px;}
.wsa3{word-spacing:19.349362px;}
.ws172{word-spacing:19.361317px;}
.ws1a0{word-spacing:19.373272px;}
.ws110{word-spacing:19.397182px;}
.ws1ac{word-spacing:19.468913px;}
.wsfc{word-spacing:19.570531px;}
.ws3a{word-spacing:19.582487px;}
.ws296{word-spacing:19.582781px;}
.wsff{word-spacing:19.690083px;}
.ws100{word-spacing:19.785724px;}
.wsfe{word-spacing:19.821589px;}
.ws112{word-spacing:19.833544px;}
.ws284{word-spacing:19.845798px;}
.ws232{word-spacing:19.851477px;}
.ws258{word-spacing:19.863432px;}
.wsfd{word-spacing:19.869409px;}
.ws3d{word-spacing:19.881365px;}
.ws111{word-spacing:19.917230px;}
.ws26e{word-spacing:19.982983px;}
.wsaf{word-spacing:19.994938px;}
.ws3c{word-spacing:20.030804px;}
.ws3b{word-spacing:20.042759px;}
.ws58{word-spacing:20.054714px;}
.ws129{word-spacing:20.078624px;}
.ws0{word-spacing:20.156299px;}
.wse1{word-spacing:20.168287px;}
.ws2c0{word-spacing:20.170982px;}
.ws59{word-spacing:20.198175px;}
.ws179{word-spacing:20.263928px;}
.wscb{word-spacing:20.299794px;}
.ws252{word-spacing:20.347614px;}
.wse0{word-spacing:20.395435px;}
.wsbb{word-spacing:20.455210px;}
.ws123{word-spacing:20.467165px;}
.ws17e{word-spacing:20.520963px;}
.wsb8{word-spacing:20.586717px;}
.ws16c{word-spacing:20.616604px;}
.ws2a9{word-spacing:20.625284px;}
.ws16b{word-spacing:20.652470px;}
.ws21c{word-spacing:20.664425px;}
.ws207{word-spacing:20.676380px;}
.ws236{word-spacing:20.724201px;}
.ws17a{word-spacing:20.736156px;}
.ws151{word-spacing:20.760066px;}
.ws2bc{word-spacing:20.763965px;}
.ws92{word-spacing:20.783976px;}
.ws2cf{word-spacing:20.797440px;}
.ws215{word-spacing:20.807886px;}
.ws16d{word-spacing:20.825819px;}
.wsd1{word-spacing:20.843752px;}
.ws24c{word-spacing:20.861684px;}
.ws93{word-spacing:20.873640px;}
.wsd2{word-spacing:20.879617px;}
.ws214{word-spacing:20.885595px;}
.ws160{word-spacing:20.993191px;}
.ws13b{word-spacing:21.064921px;}
.ws7f{word-spacing:21.070899px;}
.ws6f{word-spacing:21.142630px;}
.ws15c{word-spacing:21.214360px;}
.ws46{word-spacing:21.238271px;}
.ws208{word-spacing:21.250226px;}
.ws2bd{word-spacing:21.256523px;}
.ws2ac{word-spacing:21.280434px;}
.ws45{word-spacing:21.447485px;}
.ws265{word-spacing:21.525194px;}
.ws1bf{word-spacing:21.567036px;}
.ws15b{word-spacing:21.573014px;}
.ws1b{word-spacing:21.589057px;}
.ws8{word-spacing:21.595331px;}
.wsab{word-spacing:21.596924px;}
.ws264{word-spacing:21.614857px;}
.ws6{word-spacing:21.657498px;}
.ws2a{word-spacing:21.664374px;}
.ws18{word-spacing:21.680513px;}
.wsaa{word-spacing:21.692565px;}
.ws20c{word-spacing:21.776251px;}
.ws4{word-spacing:21.820687px;}
.ws9{word-spacing:21.828458px;}
.wsdd{word-spacing:21.907757px;}
.ws2aa{word-spacing:22.045573px;}
.ws25d{word-spacing:22.081107px;}
.ws23d{word-spacing:22.140882px;}
.ws1b8{word-spacing:22.176748px;}
.ws4e{word-spacing:22.188703px;}
.ws1f7{word-spacing:22.200658px;}
.ws2a8{word-spacing:22.279897px;}
.ws2ad{word-spacing:22.303808px;}
.ws27d{word-spacing:22.541379px;}
.ws213{word-spacing:22.613109px;}
.ws90{word-spacing:22.774504px;}
.ws136{word-spacing:22.798414px;}
.ws1f9{word-spacing:22.923943px;}
.ws1fa{word-spacing:22.971763px;}
.ws9e{word-spacing:22.995673px;}
.ws278{word-spacing:23.007628px;}
.ws114{word-spacing:23.091314px;}
.ws40{word-spacing:23.139135px;}
.ws2ee{word-spacing:23.183718px;}
.ws206{word-spacing:23.186955px;}
.ws113{word-spacing:23.192933px;}
.ws205{word-spacing:23.222821px;}
.ws273{word-spacing:23.270641px;}
.ws2e9{word-spacing:23.284142px;}
.ws1b7{word-spacing:23.330417px;}
.ws2c7{word-spacing:23.351092px;}
.ws24f{word-spacing:23.354327px;}
.ws237{word-spacing:23.396170px;}
.ws27f{word-spacing:23.451516px;}
.ws41{word-spacing:23.455945px;}
.ws1b0{word-spacing:23.563542px;}
.ws277{word-spacing:23.611362px;}
.ws27a{word-spacing:23.665160px;}
.ws298{word-spacing:23.690622px;}
.ws2c4{word-spacing:23.733662px;}
.ws1f4{word-spacing:23.790689px;}
.ws1f6{word-spacing:23.820577px;}
.ws2b8{word-spacing:23.838868px;}
.ws17c{word-spacing:23.880352px;}
.wse4{word-spacing:23.904262px;}
.ws204{word-spacing:23.952083px;}
.ws17d{word-spacing:23.958060px;}
.ws17b{word-spacing:23.993926px;}
.ws200{word-spacing:24.113477px;}
.wsde{word-spacing:24.472131px;}
.ws1f3{word-spacing:24.639502px;}
.ws22b{word-spacing:24.836762px;}
.wsdf{word-spacing:24.860672px;}
.ws242{word-spacing:25.069887px;}
.ws2df{word-spacing:25.091784px;}
.ws14f{word-spacing:25.159550px;}
.ws27b{word-spacing:25.267146px;}
.ws23f{word-spacing:25.297034px;}
.ws233{word-spacing:25.332899px;}
.ws4c{word-spacing:25.392675px;}
.ws14e{word-spacing:25.416585px;}
.wsfa{word-spacing:25.518204px;}
.ws261{word-spacing:25.577979px;}
.ws4b{word-spacing:25.589934px;}
.ws142{word-spacing:25.655688px;}
.ws4a{word-spacing:25.661665px;}
.ws161{word-spacing:25.673620px;}
.ws96{word-spacing:25.709486px;}
.ws2c2{word-spacing:25.727806px;}
.ws162{word-spacing:25.835014px;}
.ws238{word-spacing:25.840992px;}
.ws16e{word-spacing:26.115960px;}
.ws6a{word-spacing:26.127915px;}
.ws243{word-spacing:26.157803px;}
.ws25b{word-spacing:26.163780px;}
.ws95{word-spacing:26.175735px;}
.ws94{word-spacing:26.199645px;}
.ws244{word-spacing:26.277354px;}
.ws7a{word-spacing:26.337129px;}
.ws119{word-spacing:26.367017px;}
.ws68{word-spacing:26.384950px;}
.ws8f{word-spacing:26.408860px;}
.ws218{word-spacing:26.426793px;}
.ws9d{word-spacing:26.510479px;}
.ws170{word-spacing:26.540366px;}
.ws79{word-spacing:26.636007px;}
.wsf8{word-spacing:26.683828px;}
.ws16f{word-spacing:26.695783px;}
.ws1f8{word-spacing:26.713716px;}
.ws217{word-spacing:26.797401px;}
.ws124{word-spacing:26.809357px;}
.ws1ab{word-spacing:26.881087px;}
.ws224{word-spacing:27.006616px;}
.wsf7{word-spacing:27.173988px;}
.wsf9{word-spacing:27.221808px;}
.wsc2{word-spacing:27.293539px;}
.wsc1{word-spacing:27.365270px;}
.ws23e{word-spacing:27.389180px;}
.ws141{word-spacing:27.538619px;}
.ws20d{word-spacing:27.646215px;}
.ws168{word-spacing:27.664148px;}
.wsa8{word-spacing:27.807609px;}
.ws1b6{word-spacing:27.819564px;}
.ws289{word-spacing:27.846285px;}
.ws7b{word-spacing:27.879340px;}
.ws250{word-spacing:27.903250px;}
.ws73{word-spacing:27.927160px;}
.ws78{word-spacing:27.998891px;}
.ws21f{word-spacing:28.028779px;}
.ws234{word-spacing:28.040734px;}
.ws1b5{word-spacing:28.064644px;}
.ws262{word-spacing:28.088554px;}
.ws263{word-spacing:28.112465px;}
.wse6{word-spacing:28.124420px;}
.wsb6{word-spacing:28.130397px;}
.ws251{word-spacing:28.142352px;}
.ws1b4{word-spacing:28.160285px;}
.ws3{word-spacing:28.178782px;}
.wsca{word-spacing:28.220061px;}
.wsae{word-spacing:28.279836px;}
.ws1{word-spacing:28.300724px;}
.ws21b{word-spacing:28.321679px;}
.ws2{word-spacing:28.341372px;}
.ws83{word-spacing:28.357545px;}
.ws84{word-spacing:28.393410px;}
.wsac{word-spacing:28.405365px;}
.ws143{word-spacing:28.477096px;}
.ws47{word-spacing:28.602625px;}
.ws61{word-spacing:28.674355px;}
.wse5{word-spacing:28.913458px;}
.ws271{word-spacing:28.943346px;}
.wsa7{word-spacing:29.062897px;}
.wsa9{word-spacing:29.128650px;}
.ws1b9{word-spacing:29.158538px;}
.wsbf{word-spacing:29.164515px;}
.ws274{word-spacing:29.170493px;}
.wsbe{word-spacing:29.296022px;}
.wsc0{word-spacing:29.403618px;}
.wsa0{word-spacing:29.475348px;}
.ws1fc{word-spacing:29.588922px;}
.ws66{word-spacing:29.648698px;}
.ws98{word-spacing:29.720428px;}
.ws1fd{word-spacing:29.911710px;}
.ws27c{word-spacing:29.917688px;}
.ws33{word-spacing:29.941598px;}
.ws97{word-spacing:29.989419px;}
.wse2{word-spacing:30.013329px;}
.ws22d{word-spacing:30.073104px;}
.wsea{word-spacing:30.079082px;}
.ws24e{word-spacing:30.091037px;}
.ws24b{word-spacing:30.174723px;}
.ws269{word-spacing:30.192656px;}
.wsd3{word-spacing:30.198633px;}
.ws6e{word-spacing:30.222543px;}
.ws20b{word-spacing:30.282319px;}
.ws6c{word-spacing:30.342095px;}
.ws268{word-spacing:30.348072px;}
.ws24d{word-spacing:30.377960px;}
.ws139{word-spacing:30.623040px;}
.ws245{word-spacing:30.634995px;}
.ws2e6{word-spacing:30.672518px;}
.wsb4{word-spacing:30.694771px;}
.ws223{word-spacing:30.712703px;}
.wsb5{word-spacing:30.742591px;}
.ws2bf{word-spacing:30.758596px;}
.ws276{word-spacing:30.784434px;}
.ws24a{word-spacing:30.838232px;}
.ws247{word-spacing:30.939851px;}
.wsda{word-spacing:30.951806px;}
.wsd9{word-spacing:31.358280px;}
.ws77{word-spacing:31.394145px;}
.ws22c{word-spacing:31.435988px;}
.ws2b1{word-spacing:31.485478px;}
.ws10b{word-spacing:31.621292px;}
.ws76{word-spacing:31.633248px;}
.ws120{word-spacing:31.728888px;}
.ws2c8{word-spacing:31.896740px;}
.ws240{word-spacing:31.938103px;}
.ws115{word-spacing:31.985924px;}
.ws1a9{word-spacing:32.147318px;}
.ws266{word-spacing:32.577702px;}
.ws230{word-spacing:32.643455px;}
.ws74{word-spacing:32.691276px;}
.ws22e{word-spacing:32.745074px;}
.ws22f{word-spacing:32.792894px;}
.ws2ed{word-spacing:33.269209px;}
.ws50{word-spacing:33.318919px;}
.ws9c{word-spacing:33.827012px;}
.ws105{word-spacing:33.856900px;}
.wsb2{word-spacing:34.090025px;}
.ws28b{word-spacing:34.101298px;}
.ws71{word-spacing:34.275329px;}
.ws70{word-spacing:34.442701px;}
.ws7c{word-spacing:34.520409px;}
.ws65{word-spacing:34.681803px;}
.ws80{word-spacing:34.902973px;}
.ws81{word-spacing:34.956771px;}
.wsc5{word-spacing:35.201851px;}
.ws103{word-spacing:35.225761px;}
.ws235{word-spacing:35.231739px;}
.wsb1{word-spacing:35.345312px;}
.ws104{word-spacing:35.363245px;}
.wsc6{word-spacing:35.428998px;}
.ws210{word-spacing:35.524639px;}
.ws20e{word-spacing:35.703966px;}
.wsa2{word-spacing:35.865360px;}
.wsa1{word-spacing:36.008821px;}
.ws1ff{word-spacing:36.241946px;}
.ws1ae{word-spacing:36.259879px;}
.ws1af{word-spacing:36.265857px;}
.wsc3{word-spacing:36.277812px;}
.wsc4{word-spacing:36.361497px;}
.ws1bc{word-spacing:37.060872px;}
.ws102{word-spacing:37.084782px;}
.ws5b{word-spacing:37.204333px;}
.ws1bb{word-spacing:37.222266px;}
.ws5a{word-spacing:37.317907px;}
.ws1ba{word-spacing:37.425503px;}
.ws26b{word-spacing:37.509189px;}
.ws26a{word-spacing:37.521144px;}
.ws4f{word-spacing:37.562987px;}
.ws229{word-spacing:37.616785px;}
.ws228{word-spacing:37.802089px;}
.ws241{word-spacing:37.885775px;}
.ws201{word-spacing:37.999349px;}
.wsdc{word-spacing:38.130855px;}
.ws21e{word-spacing:38.537329px;}
.ws8b{word-spacing:38.764477px;}
.ws25e{word-spacing:38.842185px;}
.ws8c{word-spacing:39.075310px;}
.ws8d{word-spacing:39.888258px;}
.ws67{word-spacing:40.217024px;}
.wsfb{word-spacing:41.484266px;}
.ws26f{word-spacing:41.693481px;}
.ws2be{word-spacing:41.872243px;}
.ws171{word-spacing:42.189618px;}
.ws2ae{word-spacing:43.053426px;}
.wsc7{word-spacing:44.251877px;}
.ws203{word-spacing:45.226219px;}
.ws202{word-spacing:45.262084px;}
.ws267{word-spacing:47.408028px;}
.ws48{word-spacing:47.521602px;}
.ws5c{word-spacing:51.012497px;}
.ws5d{word-spacing:51.149981px;}
.ws22a{word-spacing:52.052592px;}
.ws108{word-spacing:53.391566px;}
.ws10a{word-spacing:53.576870px;}
.ws7e{word-spacing:53.839883px;}
.ws85{word-spacing:53.917591px;}
.ws86{word-spacing:54.067030px;}
.ws7d{word-spacing:54.138761px;}
.ws87{word-spacing:54.234402px;}
.ws60{word-spacing:54.778360px;}
.ws8a{word-spacing:55.639128px;}
.ws62{word-spacing:55.770635px;}
.ws5f{word-spacing:58.974607px;}
.ws5e{word-spacing:59.147956px;}
.ws6b{word-spacing:60.020680px;}
.ws260{word-spacing:60.194029px;}
.ws166{word-spacing:61.891656px;}
.ws165{word-spacing:61.999252px;}
.ws82{word-spacing:62.220422px;}
.ws2a0{word-spacing:63.210062px;}
.ws106{word-spacing:65.286910px;}
.ws107{word-spacing:65.298865px;}
.ws72{word-spacing:65.902599px;}
.ws63{word-spacing:67.151909px;}
.ws1d1{word-spacing:77.054300px;}
.ws1cf{word-spacing:77.159506px;}
.ws30{word-spacing:227.442409px;}
.ws1ce{word-spacing:229.106587px;}
.ws1cc{word-spacing:229.446118px;}
._27{margin-left:-2668.814510px;}
._1b{margin-left:-54.972032px;}
._2b{margin-left:-53.808797px;}
._22{margin-left:-36.086530px;}
._21{margin-left:-34.974704px;}
._20{margin-left:-32.404353px;}
._1f{margin-left:-31.364257px;}
._7{margin-left:-30.084317px;}
._2e{margin-left:-28.202128px;}
._14{margin-left:-25.308989px;}
._57{margin-left:-23.368672px;}
._10{margin-left:-20.085771px;}
._c{margin-left:-18.839990px;}
._2c{margin-left:-17.735421px;}
._3a{margin-left:-13.638606px;}
._16{margin-left:-11.639680px;}
._26{margin-left:-10.386765px;}
._6{margin-left:-6.803204px;}
._2{margin-left:-5.426423px;}
._8{margin-left:-3.510076px;}
._3{margin-left:-2.339041px;}
._5{margin-left:-1.013809px;}
._1{width:1.036508px;}
._5e{width:9.133849px;}
._15{width:10.147659px;}
._9{width:11.969646px;}
._4{width:13.930316px;}
._e{width:15.778895px;}
._b{width:17.245510px;}
._d{width:18.282124px;}
._1d{width:19.424391px;}
._f{width:21.010549px;}
._12{width:22.732661px;}
._11{width:24.460176px;}
._58{width:25.803985px;}
._1c{width:26.916953px;}
._28{width:27.921183px;}
._0{width:29.581116px;}
._1a{width:30.915946px;}
._23{width:32.449797px;}
._5b{width:33.878420px;}
._1e{width:35.016546px;}
._19{width:36.937158px;}
._24{width:37.956931px;}
._59{width:39.117153px;}
._29{width:40.278048px;}
._5d{width:42.911762px;}
._60{width:44.226258px;}
._25{width:46.589103px;}
._13{width:48.876118px;}
._5a{width:53.313858px;}
._17{width:55.854321px;}
._18{width:57.432396px;}
._5c{width:61.419429px;}
._5f{width:64.391830px;}
._2a{width:66.447769px;}
._3e{width:77.207327px;}
._37{width:79.426231px;}
._31{width:101.017503px;}
._30{width:115.402120px;}
._40{width:136.462576px;}
._33{width:138.193704px;}
._38{width:160.004953px;}
._32{width:183.561676px;}
._3c{width:199.447879px;}
._2f{width:223.329786px;}
._a{width:230.432117px;}
._36{width:259.229161px;}
._2d{width:272.198855px;}
._4f{width:287.888406px;}
._41{width:305.481826px;}
._51{width:311.846827px;}
._4c{width:335.556578px;}
._48{width:353.757327px;}
._43{width:448.902387px;}
._34{width:489.010027px;}
._49{width:502.500387px;}
._56{width:576.183292px;}
._42{width:613.397750px;}
._45{width:622.603331px;}
._50{width:646.556970px;}
._4b{width:670.371928px;}
._47{width:685.536030px;}
._46{width:716.906738px;}
._53{width:747.172775px;}
._55{width:757.789082px;}
._54{width:770.982951px;}
._44{width:791.574759px;}
._39{width:824.834404px;}
._35{width:849.055842px;}
._4e{width:856.200329px;}
._4a{width:864.439922px;}
._3b{width:872.966442px;}
._52{width:880.306996px;}
._4d{width:903.418982px;}
._3f{width:1018.553303px;}
._3d{width:1227.670629px;}
.fc1{color:rgb(50,126,177);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.222800px;}
.fs4{font-size:31.876200px;}
.fsb{font-size:38.449800px;}
.fs5{font-size:47.821200px;}
.fs8{font-size:48.279600px;}
.fsc{font-size:48.375600px;}
.fs3{font-size:51.799200px;}
.fs9{font-size:52.905000px;}
.fs6{font-size:53.797800px;}
.fs7{font-size:59.775600px;}
.fs0{font-size:71.730600px;}
.fs2{font-size:77.709000px;}
.fs1{font-size:101.618400px;}
.y0{bottom:0.000000px;}
.y148{bottom:0.938250px;}
.y14d{bottom:7.492350px;}
.y132{bottom:37.701750px;}
.y12b{bottom:42.401400px;}
.y43{bottom:44.815652px;}
.y144{bottom:56.299950px;}
.y1e9{bottom:59.527819px;}
.y113{bottom:59.528456px;}
.y217{bottom:59.528509px;}
.y1b0{bottom:59.529851px;}
.ydf{bottom:59.532500px;}
.y42{bottom:59.782493px;}
.y179{bottom:60.462677px;}
.y25a{bottom:60.803787px;}
.y119{bottom:61.824627px;}
.y216{bottom:74.495349px;}
.y41{bottom:74.664450px;}
.y259{bottom:75.770627px;}
.y1e7{bottom:77.470959px;}
.y112{bottom:77.471596px;}
.y1af{bottom:77.472991px;}
.yde{bottom:77.475641px;}
.y1e8{bottom:77.895366px;}
.y13d{bottom:79.237050px;}
.y12f{bottom:79.260600px;}
.y136{bottom:79.261500px;}
.y118{bottom:79.767767px;}
.y178{bottom:83.678674px;}
.y215{bottom:89.462189px;}
.y258{bottom:90.737467px;}
.y1e6{bottom:95.414100px;}
.y111{bottom:95.414737px;}
.y1ae{bottom:95.416132px;}
.ydd{bottom:95.418782px;}
.y1e5{bottom:95.422110px;}
.y117{bottom:97.710908px;}
.y177{bottom:98.645514px;}
.y40{bottom:103.067702px;}
.y214{bottom:104.429029px;}
.y257{bottom:105.704307px;}
.y3d{bottom:105.792507px;}
.yab{bottom:107.325952px;}
.y110{bottom:113.357878px;}
.y79{bottom:113.358804px;}
.y1ad{bottom:113.359273px;}
.ydc{bottom:113.361922px;}
.y1e4{bottom:113.365250px;}
.y176{bottom:113.527471px;}
.y116{bottom:115.654049px;}
.y3f{bottom:118.034543px;}
.y213{bottom:119.310987px;}
.y256{bottom:120.586265px;}
.y3c{bottom:123.735648px;}
.yaa{bottom:125.269093px;}
.y175{bottom:128.494311px;}
.y10f{bottom:131.301019px;}
.y78{bottom:131.301945px;}
.y1ac{bottom:131.302414px;}
.ydb{bottom:131.305063px;}
.y1e3{bottom:131.308391px;}
.y3e{bottom:132.916500px;}
.y115{bottom:133.597189px;}
.y212{bottom:134.277827px;}
.y255{bottom:135.553105px;}
.y3b{bottom:141.593608px;}
.ya9{bottom:143.212233px;}
.y174{bottom:143.461151px;}
.y10e{bottom:149.244159px;}
.y211{bottom:149.244667px;}
.y77{bottom:149.245086px;}
.y1ab{bottom:149.245554px;}
.yda{bottom:149.248204px;}
.y1e2{bottom:149.251532px;}
.y254{bottom:150.519945px;}
.y114{bottom:151.455150px;}
.y173{bottom:158.427991px;}
.y3a{bottom:159.536749px;}
.ya8{bottom:161.155374px;}
.y210{bottom:164.211507px;}
.y253{bottom:165.486785px;}
.y76{bottom:167.188227px;}
.y1aa{bottom:167.188695px;}
.yd9{bottom:167.191345px;}
.y1e0{bottom:167.194673px;}
.y10d{bottom:167.197322px;}
.y1e1{bottom:167.535394px;}
.y172{bottom:173.309949px;}
.y39{bottom:177.479890px;}
.y20f{bottom:179.093465px;}
.ya7{bottom:179.098515px;}
.y252{bottom:180.368742px;}
.y75{bottom:185.131367px;}
.y1a9{bottom:185.131836px;}
.yd8{bottom:185.134485px;}
.y1df{bottom:185.137813px;}
.y171{bottom:188.276789px;}
.y20e{bottom:194.060305px;}
.y251{bottom:195.335582px;}
.y38{bottom:195.423030px;}
.y10c{bottom:195.599699px;}
.ya6{bottom:196.956475px;}
.y31{bottom:202.905441px;}
.y74{bottom:202.989328px;}
.y1a8{bottom:202.989796px;}
.yd7{bottom:202.992446px;}
.y1de{bottom:202.995774px;}
.y170{bottom:203.243629px;}
.y20d{bottom:209.027145px;}
.y14f{bottom:209.707050px;}
.y250{bottom:210.302422px;}
.y37{bottom:213.366171px;}
.ya5{bottom:214.899616px;}
.y30{bottom:220.848582px;}
.y73{bottom:220.932469px;}
.y1a7{bottom:220.932937px;}
.yd6{bottom:220.935587px;}
.y1dd{bottom:220.938915px;}
.y20c{bottom:223.909102px;}
.y24f{bottom:225.184380px;}
.y16c{bottom:226.714274px;}
.y36{bottom:231.309312px;}
.ya4{bottom:232.842757px;}
.y2f{bottom:238.791722px;}
.y72{bottom:238.875609px;}
.y20b{bottom:238.875942px;}
.y1a6{bottom:238.876078px;}
.yd5{bottom:238.878727px;}
.y1dc{bottom:238.882055px;}
.y24e{bottom:240.151220px;}
.y16f{bottom:241.596231px;}
.y129{bottom:241.616045px;}
.y143{bottom:245.085000px;}
.y35{bottom:249.252452px;}
.ya3{bottom:250.785898px;}
.y128{bottom:253.541250px;}
.y20a{bottom:253.842782px;}
.y24d{bottom:255.118060px;}
.y2e{bottom:256.734863px;}
.y1a5{bottom:256.819219px;}
.yd4{bottom:256.821868px;}
.y1db{bottom:256.825196px;}
.y71{bottom:256.826709px;}
.y10b{bottom:256.827846px;}
.y147{bottom:259.827072px;}
.y16d{bottom:264.981994px;}
.y34{bottom:267.195593px;}
.ya2{bottom:268.729038px;}
.y209{bottom:268.809622px;}
.y24c{bottom:270.084900px;}
.y146{bottom:273.705043px;}
.y2d{bottom:274.592824px;}
.y1a4{bottom:274.762359px;}
.yd3{bottom:274.765009px;}
.y1da{bottom:274.768337px;}
.y70{bottom:274.769850px;}
.y10a{bottom:274.770986px;}
.y16e{bottom:279.863951px;}
.y208{bottom:283.691580px;}
.y24b{bottom:284.973188px;}
.y33{bottom:285.053554px;}
.ya1{bottom:286.672179px;}
.y145{bottom:287.580600px;}
.y1a3{bottom:292.705500px;}
.yd2{bottom:292.708150px;}
.y1d9{bottom:292.711478px;}
.y6f{bottom:292.712990px;}
.y109{bottom:292.714127px;}
.y207{bottom:298.658420px;}
.y24a{bottom:299.940028px;}
.y16b{bottom:301.549670px;}
.y2c{bottom:302.995200px;}
.y32{bottom:302.996694px;}
.ya0{bottom:304.615320px;}
.yd1{bottom:310.651290px;}
.y1d8{bottom:310.654618px;}
.y6e{bottom:310.656131px;}
.y108{bottom:310.657268px;}
.y206{bottom:313.625260px;}
.y249{bottom:314.906868px;}
.y16a{bottom:316.516510px;}
.y9f{bottom:322.558460px;}
.y205{bottom:328.592100px;}
.yd0{bottom:328.594431px;}
.y6d{bottom:328.599272px;}
.y107{bottom:328.600409px;}
.y248{bottom:329.873708px;}
.y169{bottom:331.483350px;}
.y1d7{bottom:339.056995px;}
.y9e{bottom:340.416421px;}
.y247{bottom:344.755666px;}
.ycf{bottom:346.452391px;}
.y6c{bottom:346.457232px;}
.y106{bottom:346.458369px;}
.y127{bottom:352.942330px;}
.y9d{bottom:358.359562px;}
.y246{bottom:359.722506px;}
.y204{bottom:363.037428px;}
.yce{bottom:364.395532px;}
.y6b{bottom:364.400373px;}
.y105{bottom:364.401510px;}
.y126{bottom:367.902971px;}
.y245{bottom:374.689346px;}
.y9c{bottom:376.302702px;}
.y15c{bottom:379.787762px;}
.y168{bottom:379.789257px;}
.ycd{bottom:382.338673px;}
.y1d6{bottom:382.342001px;}
.y6a{bottom:382.343514px;}
.y104{bottom:382.344650px;}
.y2b{bottom:383.697600px;}
.y244{bottom:389.656186px;}
.y15b{bottom:397.645723px;}
.y167{bottom:397.647217px;}
.y13c{bottom:397.873500px;}
.ycc{bottom:400.281814px;}
.y1d5{bottom:400.285142px;}
.y69{bottom:400.286655px;}
.y103{bottom:400.287791px;}
.y243{bottom:404.538143px;}
.y9b{bottom:404.705079px;}
.y142{bottom:407.868706px;}
.y2a{bottom:409.128544px;}
.y15a{bottom:415.588864px;}
.y166{bottom:415.590358px;}
.ycb{bottom:418.224954px;}
.y1d4{bottom:418.228282px;}
.y68{bottom:418.229795px;}
.y102{bottom:418.230932px;}
.y242{bottom:419.504983px;}
.y141{bottom:421.746677px;}
.y29{bottom:425.625639px;}
.y159{bottom:433.532004px;}
.y165{bottom:433.533499px;}
.y241{bottom:434.471823px;}
.y140{bottom:435.551022px;}
.yca{bottom:436.168095px;}
.y1d3{bottom:436.171423px;}
.y67{bottom:436.172936px;}
.y101{bottom:436.174073px;}
.y28{bottom:442.038003px;}
.y240{bottom:449.353781px;}
.y13f{bottom:449.427786px;}
.y158{bottom:451.475145px;}
.y164{bottom:451.476640px;}
.yc9{bottom:454.111236px;}
.y1d2{bottom:454.114564px;}
.y66{bottom:454.116077px;}
.y100{bottom:454.117213px;}
.y9a{bottom:458.110094px;}
.y27{bottom:458.450367px;}
.y13e{bottom:463.304550px;}
.y23f{bottom:464.320621px;}
.y157{bottom:469.418286px;}
.y163{bottom:469.419780px;}
.yc8{bottom:472.054377px;}
.y1d1{bottom:472.057705px;}
.y65{bottom:472.059218px;}
.yff{bottom:472.060354px;}
.y26{bottom:474.947462px;}
.y99{bottom:476.053235px;}
.y23e{bottom:479.287461px;}
.y203{bottom:483.793106px;}
.y156{bottom:487.361427px;}
.y162{bottom:487.362921px;}
.yc7{bottom:489.912337px;}
.y1d0{bottom:489.915665px;}
.y64{bottom:489.917178px;}
.yfe{bottom:489.918315px;}
.y25{bottom:491.359826px;}
.y98{bottom:493.996376px;}
.y23d{bottom:494.254301px;}
.y202{bottom:501.736247px;}
.y155{bottom:505.304567px;}
.y161{bottom:505.306062px;}
.y24{bottom:507.772190px;}
.yc6{bottom:507.855478px;}
.y1cf{bottom:507.858806px;}
.y63{bottom:507.860319px;}
.yfd{bottom:507.861455px;}
.y23c{bottom:509.136258px;}
.y97{bottom:511.939516px;}
.y125{bottom:517.364128px;}
.y201{bottom:519.679387px;}
.y154{bottom:523.247708px;}
.y160{bottom:523.249202px;}
.y23b{bottom:524.103099px;}
.y23{bottom:524.184554px;}
.y1ce{bottom:525.801947px;}
.y62{bottom:525.803460px;}
.yfc{bottom:525.804596px;}
.y96{bottom:529.797477px;}
.y124{bottom:532.327183px;}
.y200{bottom:537.537348px;}
.y23a{bottom:539.069939px;}
.y22{bottom:540.681649px;}
.y153{bottom:541.105669px;}
.y15f{bottom:541.107163px;}
.yc5{bottom:543.741759px;}
.y1cd{bottom:543.745087px;}
.y61{bottom:543.746600px;}
.yfb{bottom:543.747737px;}
.y14e{bottom:543.819600px;}
.y123{bottom:547.287824px;}
.y95{bottom:547.740618px;}
.y239{bottom:554.036779px;}
.y1ff{bottom:555.480489px;}
.y21{bottom:557.094013px;}
.y152{bottom:559.048809px;}
.y15e{bottom:559.050304px;}
.y1cc{bottom:561.688228px;}
.y60{bottom:561.689741px;}
.yc4{bottom:561.690262px;}
.yfa{bottom:561.690878px;}
.y94{bottom:565.683758px;}
.y238{bottom:568.918736px;}
.y1fe{bottom:573.423629px;}
.y20{bottom:573.506377px;}
.y151{bottom:576.991950px;}
.y15d{bottom:576.993444px;}
.y1cb{bottom:579.631369px;}
.y5f{bottom:579.632882px;}
.yc3{bottom:579.633403px;}
.yf9{bottom:579.634018px;}
.y135{bottom:583.255500px;}
.y93{bottom:583.626899px;}
.y237{bottom:583.885576px;}
.y1f{bottom:590.003472px;}
.y1fd{bottom:591.366770px;}
.y13b{bottom:593.255070px;}
.y1ca{bottom:597.574510px;}
.y5e{bottom:597.576022px;}
.yc2{bottom:597.576543px;}
.yf8{bottom:597.577159px;}
.y236{bottom:598.852416px;}
.y92{bottom:601.570040px;}
.y1e{bottom:606.415836px;}
.y13a{bottom:607.130627px;}
.y235{bottom:613.734374px;}
.y1c9{bottom:615.517650px;}
.y5d{bottom:615.519163px;}
.yc1{bottom:615.519684px;}
.yf7{bottom:615.520300px;}
.y1fc{bottom:618.664792px;}
.y91{bottom:619.513181px;}
.y139{bottom:620.934972px;}
.y1a0{bottom:620.957410px;}
.y1d{bottom:622.828200px;}
.y234{bottom:628.701214px;}
.y1c8{bottom:633.375611px;}
.y5c{bottom:633.377124px;}
.yc0{bottom:633.377645px;}
.yf6{bottom:633.378260px;}
.y138{bottom:634.812943px;}
.y19f{bottom:635.924250px;}
.y1fb{bottom:636.607933px;}
.y90{bottom:637.456321px;}
.y19e{bottom:641.196750px;}
.y233{bottom:643.668054px;}
.y137{bottom:648.688500px;}
.y19d{bottom:650.806200px;}
.y1c7{bottom:651.318751px;}
.y5b{bottom:651.320264px;}
.ybf{bottom:651.320785px;}
.yf5{bottom:651.321401px;}
.y1fa{bottom:654.551074px;}
.y8e{bottom:655.399462px;}
.y8f{bottom:655.740183px;}
.y19c{bottom:656.163600px;}
.y232{bottom:658.634894px;}
.y19b{bottom:665.773210px;}
.y1c6{bottom:669.261892px;}
.y5a{bottom:669.263405px;}
.ybe{bottom:669.263926px;}
.yf4{bottom:669.264542px;}
.y1f9{bottom:672.409034px;}
.y8d{bottom:673.257423px;}
.y275{bottom:673.512744px;}
.y28f{bottom:673.515135px;}
.y231{bottom:673.516851px;}
.y1c{bottom:674.106900px;}
.y1b{bottom:679.464450px;}
.y19a{bottom:680.740050px;}
.y198{bottom:680.740060px;}
.y199{bottom:686.012400px;}
.y1c5{bottom:687.205033px;}
.y59{bottom:687.206546px;}
.ybd{bottom:687.207067px;}
.y274{bottom:688.479584px;}
.y28e{bottom:688.481975px;}
.y230{bottom:688.483691px;}
.y1a{bottom:689.073900px;}
.y1f8{bottom:690.352175px;}
.y14c{bottom:692.031000px;}
.y19{bottom:694.346250px;}
.y195{bottom:695.706898px;}
.y197{bottom:695.706900px;}
.y122{bottom:696.774742px;}
.y1a2{bottom:697.665781px;}
.y196{bottom:700.979250px;}
.y8c{bottom:701.659799px;}
.y273{bottom:703.446424px;}
.y28d{bottom:703.448815px;}
.y22f{bottom:703.450532px;}
.y18{bottom:704.040750px;}
.y1c4{bottom:705.148174px;}
.y58{bottom:705.149687px;}
.ybc{bottom:705.150208px;}
.yf3{bottom:705.150823px;}
.y17{bottom:709.313250px;}
.y121{bottom:711.737797px;}
.y14b{bottom:713.687734px;}
.y1f7{bottom:717.650197px;}
.y272{bottom:718.413264px;}
.y28c{bottom:718.415655px;}
.y22e{bottom:718.417372px;}
.y16{bottom:718.922700px;}
.y194{bottom:718.922895px;}
.y1c3{bottom:723.091314px;}
.y57{bottom:723.092827px;}
.ybb{bottom:723.093348px;}
.yf2{bottom:723.093964px;}
.y15{bottom:724.280100px;}
.y120{bottom:726.624812px;}
.y14a{bottom:727.492079px;}
.y271{bottom:733.295222px;}
.y28b{bottom:733.297613px;}
.y22d{bottom:733.299329px;}
.y14{bottom:733.889550px;}
.y193{bottom:733.889735px;}
.y1f6{bottom:735.593338px;}
.y13{bottom:739.162050px;}
.y1c2{bottom:741.034455px;}
.y56{bottom:741.035968px;}
.yba{bottom:741.036489px;}
.yf1{bottom:741.037105px;}
.y149{bottom:741.370050px;}
.y11f{bottom:741.947550px;}
.y270{bottom:748.262062px;}
.y28a{bottom:748.264453px;}
.y22c{bottom:748.266169px;}
.y192{bottom:748.771692px;}
.y12{bottom:748.856400px;}
.y1f5{bottom:753.536479px;}
.y11{bottom:754.128900px;}
.y8b{bottom:755.064814px;}
.y11e{bottom:758.065555px;}
.y1c1{bottom:758.977596px;}
.y55{bottom:758.979109px;}
.yb9{bottom:758.979630px;}
.yf0{bottom:758.980245px;}
.y26f{bottom:763.228902px;}
.y289{bottom:763.231293px;}
.y22b{bottom:763.233009px;}
.y10{bottom:763.738350px;}
.y191{bottom:763.738532px;}
.yf{bottom:769.095900px;}
.y1f4{bottom:771.479619px;}
.y8a{bottom:773.007955px;}
.y12e{bottom:776.809500px;}
.y1c0{bottom:776.835556px;}
.y54{bottom:776.837069px;}
.yb8{bottom:776.837590px;}
.yef{bottom:776.838206px;}
.y26e{bottom:778.110859px;}
.y288{bottom:778.113250px;}
.y22a{bottom:778.114967px;}
.ye{bottom:778.705350px;}
.y190{bottom:778.705372px;}
.yd{bottom:784.062750px;}
.y134{bottom:786.758400px;}
.y1f3{bottom:789.337580px;}
.y89{bottom:790.951096px;}
.y26d{bottom:793.077699px;}
.y287{bottom:793.080090px;}
.y229{bottom:793.081807px;}
.yc{bottom:793.672200px;}
.y18f{bottom:793.672212px;}
.y1bf{bottom:794.778697px;}
.y53{bottom:794.780210px;}
.yb7{bottom:794.780731px;}
.yee{bottom:794.781347px;}
.yb{bottom:798.944700px;}
.y133{bottom:800.634750px;}
.y1f2{bottom:807.280720px;}
.y26c{bottom:808.044539px;}
.y286{bottom:808.046930px;}
.y228{bottom:808.048647px;}
.y18e{bottom:808.554170px;}
.y88{bottom:808.894236px;}
.y1be{bottom:812.721838px;}
.y52{bottom:812.723351px;}
.yb6{bottom:812.723872px;}
.yed{bottom:812.724487px;}
.y9{bottom:814.677000px;}
.y7{bottom:814.677650px;}
.ya{bottom:815.187937px;}
.y26b{bottom:823.011379px;}
.y285{bottom:823.013771px;}
.y227{bottom:823.015487px;}
.y8{bottom:823.265850px;}
.y18d{bottom:823.521010px;}
.y1f1{bottom:825.223861px;}
.y87{bottom:826.837377px;}
.y131{bottom:828.315336px;}
.y1bd{bottom:830.664979px;}
.y51{bottom:830.666491px;}
.yb5{bottom:830.667012px;}
.yec{bottom:830.667628px;}
.y4{bottom:837.042300px;}
.y6{bottom:837.807750px;}
.y26a{bottom:837.893337px;}
.y284{bottom:837.895728px;}
.y226{bottom:837.897444px;}
.y18c{bottom:838.487850px;}
.y18a{bottom:838.488015px;}
.y130{bottom:842.192100px;}
.y1f0{bottom:843.167002px;}
.y18b{bottom:843.760500px;}
.y86{bottom:844.780518px;}
.y5{bottom:845.716350px;}
.y1bc{bottom:848.608119px;}
.y50{bottom:848.609632px;}
.yb4{bottom:848.610153px;}
.yeb{bottom:848.610769px;}
.y269{bottom:852.860177px;}
.y283{bottom:852.862568px;}
.y225{bottom:852.864284px;}
.y189{bottom:853.369972px;}
.y1ef{bottom:861.110143px;}
.y85{bottom:862.638478px;}
.y1bb{bottom:866.551260px;}
.y4f{bottom:866.552773px;}
.yb3{bottom:866.553294px;}
.yea{bottom:866.553910px;}
.y268{bottom:867.827017px;}
.y282{bottom:867.829408px;}
.y224{bottom:867.831124px;}
.y188{bottom:868.336812px;}
.y1ee{bottom:879.053283px;}
.y84{bottom:880.581619px;}
.y267{bottom:882.793857px;}
.y281{bottom:882.796248px;}
.y223{bottom:882.797964px;}
.y187{bottom:883.303652px;}
.y1ba{bottom:884.494401px;}
.y4e{bottom:884.495914px;}
.ye9{bottom:884.497050px;}
.y3{bottom:886.279710px;}
.y11d{bottom:886.280482px;}
.y266{bottom:897.675815px;}
.y280{bottom:897.678206px;}
.y222{bottom:897.679922px;}
.y186{bottom:898.270493px;}
.y83{bottom:898.524760px;}
.y11c{bottom:901.241123px;}
.y1b9{bottom:902.437541px;}
.y4d{bottom:902.439054px;}
.ye8{bottom:902.440191px;}
.y265{bottom:912.642655px;}
.y27f{bottom:912.645046px;}
.y221{bottom:912.646762px;}
.yb2{bottom:912.898811px;}
.y185{bottom:913.152450px;}
.y11b{bottom:916.201764px;}
.y2{bottom:916.213950px;}
.y82{bottom:916.467901px;}
.y184{bottom:918.510000px;}
.y1b8{bottom:920.295502px;}
.y4c{bottom:920.297015px;}
.ye7{bottom:920.298151px;}
.y264{bottom:927.609495px;}
.y27e{bottom:927.611886px;}
.y220{bottom:927.613602px;}
.y183{bottom:928.119927px;}
.y80{bottom:934.411041px;}
.y81{bottom:934.836943px;}
.y1ed{bottom:937.219425px;}
.y1b7{bottom:938.238643px;}
.y4b{bottom:938.240156px;}
.ye6{bottom:938.241292px;}
.y263{bottom:942.576335px;}
.y27d{bottom:942.578726px;}
.y21f{bottom:942.580442px;}
.y182{bottom:943.086767px;}
.y12a{bottom:948.822000px;}
.y1{bottom:952.100550px;}
.y7f{bottom:952.354182px;}
.y1b6{bottom:956.181783px;}
.y4a{bottom:956.183296px;}
.ye5{bottom:956.184433px;}
.y262{bottom:957.458292px;}
.y27c{bottom:957.460683px;}
.y21e{bottom:957.462400px;}
.y181{bottom:958.053608px;}
.y12d{bottom:963.180165px;}
.yb1{bottom:963.412182px;}
.y7d{bottom:970.297323px;}
.y7e{bottom:970.638044px;}
.y261{bottom:972.425132px;}
.y27b{bottom:972.427523px;}
.y21d{bottom:972.429240px;}
.y180{bottom:972.935565px;}
.y1b5{bottom:974.124924px;}
.y49{bottom:974.126437px;}
.ye4{bottom:974.127574px;}
.y12c{bottom:977.345400px;}
.yb0{bottom:981.355322px;}
.y260{bottom:987.391972px;}
.y27a{bottom:987.394363px;}
.y21c{bottom:987.396080px;}
.y17f{bottom:987.902405px;}
.y7c{bottom:988.240464px;}
.y1b4{bottom:992.068065px;}
.y48{bottom:992.069578px;}
.ye3{bottom:992.070714px;}
.y1ec{bottom:998.703113px;}
.yaf{bottom:999.298463px;}
.y25f{bottom:1002.273930px;}
.y279{bottom:1002.276321px;}
.y21b{bottom:1002.278037px;}
.y44{bottom:1005.845400px;}
.y1b3{bottom:1010.011206px;}
.y47{bottom:1010.012719px;}
.ye2{bottom:1010.013855px;}
.y17e{bottom:1011.373050px;}
.y17c{bottom:1011.373419px;}
.y7b{bottom:1016.559154px;}
.y1eb{bottom:1016.561074px;}
.y17d{bottom:1016.645400px;}
.yae{bottom:1017.156424px;}
.y25e{bottom:1017.240770px;}
.y278{bottom:1017.243161px;}
.y21a{bottom:1017.244877px;}
.y1b2{bottom:1027.954346px;}
.y46{bottom:1027.955859px;}
.ye1{bottom:1027.956996px;}
.y25d{bottom:1032.207610px;}
.y277{bottom:1032.210001px;}
.y219{bottom:1032.211717px;}
.y17b{bottom:1033.057943px;}
.y11a{bottom:1035.767400px;}
.y7a{bottom:1044.961530px;}
.y1ea{bottom:1044.963450px;}
.yad{bottom:1045.558800px;}
.y1b1{bottom:1045.897487px;}
.y45{bottom:1045.899000px;}
.ye0{bottom:1045.900137px;}
.y25c{bottom:1047.174450px;}
.y276{bottom:1047.176841px;}
.y218{bottom:1047.178557px;}
.y17a{bottom:1047.939900px;}
.yac{bottom:1084.166700px;}
.y1a1{bottom:1084.167899px;}
.y150{bottom:1084.170295px;}
.y290{bottom:1084.171321px;}
.y25b{bottom:1084.171489px;}
.h8{height:21.867073px;}
.h21{height:21.930826px;}
.h22{height:22.440845px;}
.h19{height:26.722611px;}
.ha{height:32.805343px;}
.he{height:32.900986px;}
.h16{height:33.554322px;}
.h1e{height:33.621042px;}
.hb{height:34.239979px;}
.h9{height:34.579510px;}
.h5{height:35.637850px;}
.h17{height:36.768975px;}
.hd{height:37.012886px;}
.hc{height:37.228078px;}
.h12{height:41.006062px;}
.h14{height:41.104165px;}
.h10{height:41.125613px;}
.hf{height:41.364715px;}
.h11{height:41.424491px;}
.h15{height:42.082022px;}
.h13{height:42.799330px;}
.h1c{height:43.383846px;}
.h18{height:43.396335px;}
.h23{height:44.162213px;}
.h24{height:44.496957px;}
.h2{height:49.350653px;}
.h4{height:53.463792px;}
.h6{height:55.639644px;}
.h7{height:57.683391px;}
.h1a{height:65.407500px;}
.h20{height:65.409000px;}
.h1f{height:67.431000px;}
.h3{height:69.913459px;}
.h1b{height:90.343500px;}
.h1d{height:90.345000px;}
.h0{height:1160.958000px;}
.h1{height:1161.000000px;}
.w5{width:171.217500px;}
.w1{width:187.047000px;}
.w3{width:192.972000px;}
.w2{width:192.973500px;}
.w4{width:195.430500px;}
.w0{width:864.000000px;}
.x0{left:0.000000px;}
.x41{left:9.348600px;}
.x4b{left:12.239100px;}
.x4e{left:18.960450px;}
.x2{left:55.445700px;}
.x69{left:61.398450px;}
.x57{left:67.349592px;}
.x56{left:68.879871px;}
.x4{left:72.028350px;}
.x34{left:73.303661px;}
.x6a{left:81.213164px;}
.x68{left:89.800232px;}
.x5c{left:93.033000px;}
.x5d{left:97.029900px;}
.x5a{left:126.453450px;}
.x5b{left:135.467700px;}
.x3e{left:141.505500px;}
.x3f{left:143.877600px;}
.x1a{left:163.445550px;}
.x1e{left:164.466000px;}
.x1b{left:167.952750px;}
.x1f{left:168.973200px;}
.x2c{left:172.714950px;}
.x2d{left:177.136950px;}
.x3{left:181.048583px;}
.x52{left:203.414100px;}
.x37{left:210.302250px;}
.xf{left:213.873900px;}
.x30{left:220.336950px;}
.x31{left:222.888150px;}
.x29{left:229.946400px;}
.x10{left:232.072350px;}
.x25{left:235.558950px;}
.x26{left:239.555850px;}
.x53{left:255.713712px;}
.x20{left:258.094350px;}
.x5{left:262.601550px;}
.x6{left:272.806200px;}
.x2a{left:282.925950px;}
.x2b{left:287.433000px;}
.x23{left:301.719600px;}
.x24{left:306.226650px;}
.x40{left:308.518500px;}
.x48{left:310.543500px;}
.x46{left:313.506000px;}
.x44{left:317.867100px;}
.x49{left:319.239600px;}
.x4d{left:321.046872px;}
.x47{left:322.203600px;}
.x4c{left:324.660600px;}
.x42{left:327.912600px;}
.x11{left:356.910150px;}
.x45{left:365.881800px;}
.x4a{left:370.290449px;}
.x1{left:372.982650px;}
.x12{left:374.343150px;}
.x43{left:379.325546px;}
.x13{left:398.578644px;}
.x61{left:404.447100px;}
.x7{left:411.590400px;}
.x62{left:413.376300px;}
.x8{left:429.023550px;}
.x35{left:449.943739px;}
.x6b{left:455.897048px;}
.x36{left:467.886879px;}
.x21{left:469.842085px;}
.x6c{left:475.711763px;}
.x27{left:492.378166px;}
.x54{left:495.525075px;}
.x32{left:507.600033px;}
.x14{left:513.297450px;}
.x65{left:518.314800px;}
.x15{left:520.610850px;}
.x9{left:524.437650px;}
.xa{left:541.870650px;}
.x50{left:543.774000px;}
.x4f{left:552.518400px;}
.x2e{left:555.223313px;}
.x22{left:557.093060px;}
.x5e{left:559.473750px;}
.x1c{left:564.492118px;}
.x51{left:574.995750px;}
.x28{left:579.629141px;}
.x55{left:589.239085px;}
.x33{left:594.851008px;}
.x16{left:630.396600px;}
.x3a{left:633.029333px;}
.x3b{left:635.241030px;}
.x2f{left:642.474287px;}
.x17{left:647.829750px;}
.x1d{left:651.743093px;}
.xb{left:678.444000px;}
.xc{left:684.991950px;}
.x38{left:707.693540px;}
.x39{left:709.905238px;}
.x18{left:718.667332px;}
.x66{left:727.341107px;}
.x63{left:728.623563px;}
.x67{left:729.636490px;}
.x64{left:730.835261px;}
.x5f{left:743.499000px;}
.x58{left:756.424950px;}
.x60{left:759.486300px;}
.x59{left:764.248650px;}
.x19{left:777.089550px;}
.xd{left:782.276850px;}
.xe{left:787.124250px;}
.x3c{left:795.880483px;}
.x3d{left:798.092180px;}
@media print{
.v1{vertical-align:-2.721542pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.816664pt;}
.v3{vertical-align:19.285768pt;}
.ls51{letter-spacing:-0.871395pt;}
.ls50{letter-spacing:-0.616353pt;}
.ls67{letter-spacing:-0.034332pt;}
.ls6d{letter-spacing:-0.030041pt;}
.ls6e{letter-spacing:-0.025800pt;}
.ls65{letter-spacing:-0.025749pt;}
.ls66{letter-spacing:-0.021458pt;}
.ls68{letter-spacing:-0.017166pt;}
.ls6b{letter-spacing:-0.012875pt;}
.ls6a{letter-spacing:-0.008583pt;}
.ls69{letter-spacing:-0.004292pt;}
.ls10{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.001067pt;}
.ls5f{letter-spacing:0.004292pt;}
.ls6c{letter-spacing:0.008583pt;}
.ls60{letter-spacing:0.012875pt;}
.ls63{letter-spacing:0.013671pt;}
.ls5d{letter-spacing:0.017166pt;}
.ls62{letter-spacing:0.020507pt;}
.lsa{letter-spacing:0.021254pt;}
.ls9{letter-spacing:0.042507pt;}
.ls2{letter-spacing:0.046044pt;}
.ls5e{letter-spacing:0.047027pt;}
.ls7f{letter-spacing:0.055260pt;}
.lsb{letter-spacing:0.063761pt;}
.ls1{letter-spacing:0.110505pt;}
.ls0{letter-spacing:0.135491pt;}
.lsd{letter-spacing:0.143461pt;}
.ls83{letter-spacing:0.148777pt;}
.ls3{letter-spacing:0.167371pt;}
.ls7c{letter-spacing:0.170031pt;}
.lse{letter-spacing:0.185969pt;}
.ls21{letter-spacing:0.324117pt;}
.ls40{letter-spacing:0.345370pt;}
.ls44{letter-spacing:0.366624pt;}
.ls3a{letter-spacing:0.409131pt;}
.ls3d{letter-spacing:0.414444pt;}
.ls42{letter-spacing:0.441011pt;}
.ls1f{letter-spacing:0.446324pt;}
.ls3c{letter-spacing:0.451638pt;}
.ls2c{letter-spacing:0.467578pt;}
.ls1d{letter-spacing:0.472891pt;}
.ls8b{letter-spacing:0.488832pt;}
.ls35{letter-spacing:0.510085pt;}
.ls30{letter-spacing:0.520712pt;}
.ls27{letter-spacing:0.526025pt;}
.ls18{letter-spacing:0.531339pt;}
.ls38{letter-spacing:0.536652pt;}
.ls32{letter-spacing:0.541965pt;}
.ls43{letter-spacing:0.547279pt;}
.ls23{letter-spacing:0.552592pt;}
.ls26{letter-spacing:0.557906pt;}
.ls19{letter-spacing:0.568532pt;}
.ls1b{letter-spacing:0.573846pt;}
.ls34{letter-spacing:0.579159pt;}
.ls1e{letter-spacing:0.584473pt;}
.ls2d{letter-spacing:0.589786pt;}
.ls31{letter-spacing:0.595099pt;}
.ls33{letter-spacing:0.600413pt;}
.ls25{letter-spacing:0.605726pt;}
.ls15{letter-spacing:0.611039pt;}
.ls39{letter-spacing:0.616353pt;}
.ls1a{letter-spacing:0.621666pt;}
.ls22{letter-spacing:0.626980pt;}
.ls2f{letter-spacing:0.632293pt;}
.ls14{letter-spacing:0.637606pt;}
.ls1c{letter-spacing:0.642920pt;}
.ls20{letter-spacing:0.648233pt;}
.ls2e{letter-spacing:0.653547pt;}
.ls2a{letter-spacing:0.658860pt;}
.ls16{letter-spacing:0.664173pt;}
.ls24{letter-spacing:0.674800pt;}
.ls17{letter-spacing:0.680113pt;}
.ls36{letter-spacing:0.685427pt;}
.ls28{letter-spacing:0.696054pt;}
.ls8a{letter-spacing:0.711994pt;}
.ls3b{letter-spacing:0.722621pt;}
.ls2b{letter-spacing:0.749188pt;}
.ls8c{letter-spacing:0.791695pt;}
.ls86{letter-spacing:4.723601pt;}
.ls4a{letter-spacing:5.026464pt;}
.ls7{letter-spacing:5.217191pt;}
.ls5b{letter-spacing:8.650193pt;}
.ls4e{letter-spacing:9.255920pt;}
.ls74{letter-spacing:9.558783pt;}
.ls79{letter-spacing:9.883048pt;}
.ls85{letter-spacing:10.010420pt;}
.ls7a{letter-spacing:10.184853pt;}
.lsf{letter-spacing:10.218859pt;}
.ls6{letter-spacing:10.247883pt;}
.ls5{letter-spacing:10.357870pt;}
.ls8{letter-spacing:10.553933pt;}
.ls49{letter-spacing:10.610833pt;}
.ls55{letter-spacing:10.770235pt;}
.ls59{letter-spacing:11.375961pt;}
.ls72{letter-spacing:11.678824pt;}
.ls80{letter-spacing:11.693877pt;}
.ls84{letter-spacing:11.702379pt;}
.ls7e{letter-spacing:11.757639pt;}
.ls82{letter-spacing:11.761890pt;}
.ls81{letter-spacing:12.063695pt;}
.ls90{letter-spacing:12.365500pt;}
.ls57{letter-spacing:12.884963pt;}
.ls4c{letter-spacing:13.490689pt;}
.ls5a{letter-spacing:14.239876pt;}
.ls73{letter-spacing:14.845602pt;}
.ls37{letter-spacing:14.962497pt;}
.ls88{letter-spacing:14.999691pt;}
.ls4{letter-spacing:15.087294pt;}
.ls4d{letter-spacing:15.148465pt;}
.ls53{letter-spacing:15.159092pt;}
.ls78{letter-spacing:15.302554pt;}
.ls48{letter-spacing:15.451328pt;}
.ls52{letter-spacing:15.764818pt;}
.ls54{letter-spacing:16.057055pt;}
.ls8f{letter-spacing:16.370544pt;}
.ls58{letter-spacing:16.960330pt;}
.ls12{letter-spacing:17.210514pt;}
.ls46{letter-spacing:17.252567pt;}
.ls71{letter-spacing:17.263193pt;}
.ls47{letter-spacing:17.555430pt;}
.lsc{letter-spacing:17.985814pt;}
.ls56{letter-spacing:18.474645pt;}
.ls4b{letter-spacing:19.080372pt;}
.ls11{letter-spacing:19.320184pt;}
.ls76{letter-spacing:19.537323pt;}
.ls87{letter-spacing:20.589373pt;}
.ls77{letter-spacing:20.892236pt;}
.ls8d{letter-spacing:21.205726pt;}
.ls5c{letter-spacing:21.508589pt;}
.ls13{letter-spacing:22.720041pt;}
.ls45{letter-spacing:24.377818pt;}
.ls75{letter-spacing:25.127006pt;}
.ls64{letter-spacing:25.137632pt;}
.ls89{letter-spacing:26.343771pt;}
.ls70{letter-spacing:26.492546pt;}
.ls91{letter-spacing:27.252360pt;}
.ls3f{letter-spacing:28.516946pt;}
.ls8e{letter-spacing:28.766675pt;}
.ls41{letter-spacing:31.789992pt;}
.ls29{letter-spacing:32.353211pt;}
.ls6f{letter-spacing:32.385092pt;}
.ls4f{letter-spacing:47.815167pt;}
.ls3e{letter-spacing:50.339025pt;}
.ls7b{letter-spacing:418.135820pt;}
.ls7d{letter-spacing:751.642995pt;}
.ws89{word-spacing:-50.392159pt;}
.ws109{word-spacing:-47.868300pt;}
.wsb3{word-spacing:-31.843126pt;}
.ws249{word-spacing:-28.819809pt;}
.wsa6{word-spacing:-28.570080pt;}
.ws275{word-spacing:-27.305494pt;}
.ws1fe{word-spacing:-26.396905pt;}
.ws167{word-spacing:-25.190766pt;}
.ws49{word-spacing:-22.773175pt;}
.ws1f5{word-spacing:-21.258860pt;}
.ws3f{word-spacing:-18.038948pt;}
.ws25{word-spacing:-17.258334pt;}
.ws255{word-spacing:-16.423678pt;}
.ws150{word-spacing:-15.817952pt;}
.ws15e{word-spacing:-15.212226pt;}
.ws1d2{word-spacing:-11.744887pt;}
.ws246{word-spacing:-0.765128pt;}
.ws6d{word-spacing:-0.701367pt;}
.ws69{word-spacing:-0.696054pt;}
.ws248{word-spacing:-0.658860pt;}
.ws8e{word-spacing:-0.605726pt;}
.wsdb{word-spacing:-0.573846pt;}
.ws88{word-spacing:-0.467578pt;}
.wsad{word-spacing:-0.398504pt;}
.ws187{word-spacing:-0.296115pt;}
.ws191{word-spacing:-0.248908pt;}
.ws19b{word-spacing:-0.158786pt;}
.ws19d{word-spacing:-0.107288pt;}
.ws194{word-spacing:-0.102996pt;}
.ws18a{word-spacing:-0.102533pt;}
.ws19a{word-spacing:-0.098705pt;}
.ws186{word-spacing:-0.077247pt;}
.ws19c{word-spacing:-0.072956pt;}
.ws5{word-spacing:-0.069075pt;}
.ws183{word-spacing:-0.055790pt;}
.ws3e{word-spacing:-0.053134pt;}
.ws18e{word-spacing:-0.051498pt;}
.ws23{word-spacing:-0.047820pt;}
.ws198{word-spacing:-0.047207pt;}
.ws7{word-spacing:-0.046044pt;}
.ws181{word-spacing:-0.042915pt;}
.ws10{word-spacing:-0.042508pt;}
.ws190{word-spacing:-0.038624pt;}
.ws18c{word-spacing:-0.025749pt;}
.ws18b{word-spacing:-0.020507pt;}
.ws180{word-spacing:-0.017166pt;}
.ws184{word-spacing:-0.004292pt;}
.ws57{word-spacing:0.000000pt;}
.ws195{word-spacing:0.004292pt;}
.ws185{word-spacing:0.008583pt;}
.ws199{word-spacing:0.012875pt;}
.ws196{word-spacing:0.017166pt;}
.ws188{word-spacing:0.021458pt;}
.ws192{word-spacing:0.025800pt;}
.ws189{word-spacing:0.030041pt;}
.ws182{word-spacing:0.034332pt;}
.ws18d{word-spacing:0.042915pt;}
.ws193{word-spacing:0.047207pt;}
.ws197{word-spacing:0.055790pt;}
.ws18f{word-spacing:0.085830pt;}
.ws28d{word-spacing:6.873500pt;}
.ws2c6{word-spacing:7.392095pt;}
.ws292{word-spacing:7.477110pt;}
.ws2cb{word-spacing:7.481361pt;}
.ws299{word-spacing:7.489863pt;}
.ws295{word-spacing:7.693900pt;}
.ws2b3{word-spacing:7.766163pt;}
.ws2cd{word-spacing:7.770414pt;}
.ws2d5{word-spacing:7.791668pt;}
.ws29a{word-spacing:7.846928pt;}
.ws1cd{word-spacing:7.910689pt;}
.ws283{word-spacing:7.995705pt;}
.ws148{word-spacing:8.193242pt;}
.ws29b{word-spacing:8.208243pt;}
.ws1cb{word-spacing:8.212494pt;}
.ws280{word-spacing:8.229497pt;}
.ws1c5{word-spacing:8.314513pt;}
.ws1c6{word-spacing:8.454788pt;}
.ws2cc{word-spacing:8.510048pt;}
.ws147{word-spacing:8.639567pt;}
.ws1e8{word-spacing:8.650324pt;}
.ws1e7{word-spacing:8.671578pt;}
.ws2d9{word-spacing:8.697082pt;}
.ws2de{word-spacing:8.743841pt;}
.ws2d3{word-spacing:8.850110pt;}
.ws126{word-spacing:8.852102pt;}
.ws146{word-spacing:8.894609pt;}
.ws1e4{word-spacing:8.952129pt;}
.ws2eb{word-spacing:8.998887pt;}
.ws294{word-spacing:9.054147pt;}
.ws1e5{word-spacing:9.109407pt;}
.ws1d{word-spacing:9.157581pt;}
.ws2f{word-spacing:9.258004pt;}
.ws1e6{word-spacing:9.334698pt;}
.ws1d5{word-spacing:9.351701pt;}
.ws2d4{word-spacing:9.402711pt;}
.ws12c{word-spacing:9.457828pt;}
.ws1f0{word-spacing:9.505649pt;}
.ws10d{word-spacing:9.537529pt;}
.ws2b5{word-spacing:9.542986pt;}
.ws1c{word-spacing:9.554489pt;}
.ws28f{word-spacing:9.564240pt;}
.ws286{word-spacing:9.593995pt;}
.ws29d{word-spacing:9.623751pt;}
.ws127{word-spacing:9.680991pt;}
.ws29e{word-spacing:9.849042pt;}
.ws2b6{word-spacing:9.861794pt;}
.ws54{word-spacing:9.895800pt;}
.ws2e0{word-spacing:9.900051pt;}
.ws29{word-spacing:9.932269pt;}
.wse3{word-spacing:9.946660pt;}
.ws2dd{word-spacing:9.946810pt;}
.ws216{word-spacing:9.983854pt;}
.ws11d{word-spacing:10.005107pt;}
.ws1ef{word-spacing:10.068868pt;}
.ws125{word-spacing:10.111375pt;}
.ws285{word-spacing:10.193354pt;}
.ws1e0{word-spacing:10.240113pt;}
.ws159{word-spacing:10.265463pt;}
.ws253{word-spacing:10.270776pt;}
.wsf2{word-spacing:10.286717pt;}
.wse8{word-spacing:10.345164pt;}
.ws2bb{word-spacing:10.410144pt;}
.ws15a{word-spacing:10.493939pt;}
.ws2a2{word-spacing:10.507912pt;}
.ws270{word-spacing:10.520506pt;}
.ws1a4{word-spacing:10.568326pt;}
.ws158{word-spacing:10.589580pt;}
.wse7{word-spacing:10.621460pt;}
.ws1a6{word-spacing:10.674594pt;}
.ws157{word-spacing:10.738354pt;}
.ws118{word-spacing:10.743668pt;}
.ws1a5{word-spacing:10.775548pt;}
.ws10c{word-spacing:10.834707pt;}
.ws2a4{word-spacing:10.864977pt;}
.ws2e{word-spacing:10.869547pt;}
.wsf3{word-spacing:10.871189pt;}
.ws20f{word-spacing:10.892443pt;}
.ws28c{word-spacing:11.013754pt;}
.ws137{word-spacing:11.046531pt;}
.ws51{word-spacing:11.111521pt;}
.ws1c3{word-spacing:11.149778pt;}
.ws2da{word-spacing:11.222042pt;}
.ws279{word-spacing:11.237813pt;}
.ws1ee{word-spacing:11.251797pt;}
.ws1ea{word-spacing:11.260299pt;}
.ws15{word-spacing:11.264549pt;}
.ws2e2{word-spacing:11.285803pt;}
.ws2a7{word-spacing:11.319809pt;}
.ws4d{word-spacing:11.322827pt;}
.ws2b4{word-spacing:11.345314pt;}
.ws1e2{word-spacing:11.349565pt;}
.ws2d6{word-spacing:11.358066pt;}
.wsa{word-spacing:11.366568pt;}
.ws1d3{word-spacing:11.375069pt;}
.wsf6{word-spacing:11.375961pt;}
.ws52{word-spacing:11.383571pt;}
.ws2e5{word-spacing:11.387822pt;}
.ws1df{word-spacing:11.396323pt;}
.ws2a5{word-spacing:11.413326pt;}
.wse{word-spacing:11.417577pt;}
.ws1d9{word-spacing:11.438831pt;}
.ws1dc{word-spacing:11.443082pt;}
.ws1dd{word-spacing:11.447333pt;}
.ws55{word-spacing:11.455834pt;}
.ws1d7{word-spacing:11.460085pt;}
.ws1c7{word-spacing:11.464336pt;}
.ws1db{word-spacing:11.468586pt;}
.ws116{word-spacing:11.476915pt;}
.ws1c8{word-spacing:11.477088pt;}
.ws13{word-spacing:11.481339pt;}
.ws31{word-spacing:11.485590pt;}
.wsee{word-spacing:11.492855pt;}
.ws1d6{word-spacing:11.494091pt;}
.ws220{word-spacing:11.498169pt;}
.ws2ab{word-spacing:11.498342pt;}
.ws53{word-spacing:11.502593pt;}
.ws2c1{word-spacing:11.506843pt;}
.wsf5{word-spacing:11.508796pt;}
.ws1d4{word-spacing:11.511094pt;}
.ws17f{word-spacing:11.515345pt;}
.ws1ca{word-spacing:11.523847pt;}
.ws1e1{word-spacing:11.528097pt;}
.ws2b7{word-spacing:11.540850pt;}
.ws2d2{word-spacing:11.545100pt;}
.ws17{word-spacing:11.549351pt;}
.ws1d8{word-spacing:11.562103pt;}
.ws1eb{word-spacing:11.566354pt;}
.wsf{word-spacing:11.570605pt;}
.ws32{word-spacing:11.579107pt;}
.ws297{word-spacing:11.587608pt;}
.ws1c2{word-spacing:11.600360pt;}
.ws2e3{word-spacing:11.613113pt;}
.ws12{word-spacing:11.617364pt;}
.ws14c{word-spacing:11.620377pt;}
.wsd{word-spacing:11.630116pt;}
.ws2ec{word-spacing:11.647119pt;}
.wsb{word-spacing:11.659871pt;}
.ws293{word-spacing:11.676874pt;}
.ws282{word-spacing:11.681125pt;}
.ws1e9{word-spacing:11.689627pt;}
.ws1de{word-spacing:11.698128pt;}
.ws35{word-spacing:11.705391pt;}
.ws16{word-spacing:11.706630pt;}
.ws29f{word-spacing:11.710881pt;}
.ws1ec{word-spacing:11.719382pt;}
.ws2d8{word-spacing:11.723633pt;}
.ws1ed{word-spacing:11.727884pt;}
.ws1e3{word-spacing:11.736385pt;}
.ws1da{word-spacing:11.740636pt;}
.ws1c9{word-spacing:11.778893pt;}
.ws138{word-spacing:11.779778pt;}
.ws2ea{word-spacing:11.783144pt;}
.ws56{word-spacing:11.812899pt;}
.ws1d0{word-spacing:11.829902pt;}
.ws2d7{word-spacing:11.851156pt;}
.ws1c4{word-spacing:11.855407pt;}
.wsc{word-spacing:11.919168pt;}
.ws2a3{word-spacing:11.957425pt;}
.ws11{word-spacing:11.961676pt;}
.ws1aa{word-spacing:11.965747pt;}
.ws290{word-spacing:11.995682pt;}
.ws212{word-spacing:12.008254pt;}
.ws14{word-spacing:12.008435pt;}
.ws2b9{word-spacing:12.110453pt;}
.ws2a1{word-spacing:12.182716pt;}
.wsce{word-spacing:12.220789pt;}
.ws211{word-spacing:12.300490pt;}
.ws2ba{word-spacing:12.305989pt;}
.ws26d{word-spacing:12.364251pt;}
.ws12e{word-spacing:12.390818pt;}
.wscf{word-spacing:12.401444pt;}
.wsef{word-spacing:12.406758pt;}
.ws2e8{word-spacing:12.463267pt;}
.ws21{word-spacing:12.466744pt;}
.ws2e4{word-spacing:12.471769pt;}
.ws1ad{word-spacing:12.518339pt;}
.ws12f{word-spacing:12.571473pt;}
.ws1f1{word-spacing:12.582100pt;}
.ws13d{word-spacing:12.667114pt;}
.ws12d{word-spacing:12.693681pt;}
.ws121{word-spacing:12.784008pt;}
.ws14a{word-spacing:12.821202pt;}
.ws257{word-spacing:12.831829pt;}
.ws2ef{word-spacing:12.918100pt;}
.wsba{word-spacing:12.922156pt;}
.ws28a{word-spacing:12.930852pt;}
.ws14b{word-spacing:12.969977pt;}
.wsed{word-spacing:12.985917pt;}
.ws25f{word-spacing:13.007171pt;}
.ws2b{word-spacing:13.088407pt;}
.ws13f{word-spacing:13.124065pt;}
.ws149{word-spacing:13.134692pt;}
.ws101{word-spacing:13.145319pt;}
.ws2db{word-spacing:13.173147pt;}
.ws2d{word-spacing:13.188830pt;}
.ws2e7{word-spacing:13.228407pt;}
.ws2c{word-spacing:13.231868pt;}
.ws13e{word-spacing:13.251586pt;}
.ws227{word-spacing:13.262213pt;}
.ws226{word-spacing:13.272840pt;}
.ws131{word-spacing:13.331287pt;}
.ws2ca{word-spacing:13.368682pt;}
.ws1a{word-spacing:13.389675pt;}
.ws291{word-spacing:13.402688pt;}
.ws2d1{word-spacing:13.406939pt;}
.ws11b{word-spacing:13.437555pt;}
.ws2a6{word-spacing:13.508958pt;}
.ws12b{word-spacing:13.575703pt;}
.ws34{word-spacing:13.612897pt;}
.ws64{word-spacing:13.655404pt;}
.ws272{word-spacing:13.687284pt;}
.ws21a{word-spacing:13.745731pt;}
.ws36{word-spacing:13.751045pt;}
.ws23c{word-spacing:13.788238pt;}
.ws2e1{word-spacing:13.836267pt;}
.ws1fb{word-spacing:13.841372pt;}
.wsf1{word-spacing:13.894506pt;}
.ws12a{word-spacing:13.990147pt;}
.ws117{word-spacing:14.043281pt;}
.wsf0{word-spacing:14.075161pt;}
.ws231{word-spacing:14.085788pt;}
.ws23b{word-spacing:14.107042pt;}
.ws10f{word-spacing:14.186742pt;}
.ws75{word-spacing:14.197369pt;}
.ws132{word-spacing:14.218623pt;}
.ws2dc{word-spacing:14.240091pt;}
.ws19{word-spacing:14.307824pt;}
.ws178{word-spacing:14.324890pt;}
.ws225{word-spacing:14.335517pt;}
.wsc9{word-spacing:14.340831pt;}
.ws20{word-spacing:14.341298pt;}
.ws177{word-spacing:14.356771pt;}
.wsd0{word-spacing:14.404591pt;}
.ws134{word-spacing:14.415218pt;}
.ws176{word-spacing:14.489605pt;}
.ws2c5{word-spacing:14.495137pt;}
.ws133{word-spacing:14.521486pt;}
.ws288{word-spacing:14.550397pt;}
.ws1e{word-spacing:14.561271pt;}
.ws2d0{word-spacing:14.584403pt;}
.ws2b0{word-spacing:14.601406pt;}
.wsbc{word-spacing:14.617127pt;}
.ws29c{word-spacing:14.639663pt;}
.wsd8{word-spacing:14.649007pt;}
.ws23a{word-spacing:14.707454pt;}
.ws1f2{word-spacing:14.728708pt;}
.ws128{word-spacing:14.749961pt;}
.ws26c{word-spacing:14.792468pt;}
.ws13c{word-spacing:14.803095pt;}
.ws1f{word-spacing:14.805155pt;}
.ws11f{word-spacing:14.824349pt;}
.ws1a2{word-spacing:14.829662pt;}
.wsa4{word-spacing:14.861543pt;}
.wsa5{word-spacing:14.872169pt;}
.wsd7{word-spacing:14.893423pt;}
.ws9a{word-spacing:14.898736pt;}
.ws163{word-spacing:14.925303pt;}
.ws1b2{word-spacing:14.930617pt;}
.wsf4{word-spacing:14.935930pt;}
.ws27e{word-spacing:14.946557pt;}
.ws239{word-spacing:14.951870pt;}
.ws1b1{word-spacing:14.957183pt;}
.ws2ce{word-spacing:14.958471pt;}
.ws130{word-spacing:14.967810pt;}
.wsc8{word-spacing:14.973124pt;}
.wsec{word-spacing:14.989064pt;}
.ws1a3{word-spacing:14.999691pt;}
.wsb9{word-spacing:15.042198pt;}
.ws27{word-spacing:15.044256pt;}
.ws164{word-spacing:15.052824pt;}
.ws28{word-spacing:15.058602pt;}
.wsbd{word-spacing:15.068765pt;}
.ws11e{word-spacing:15.084705pt;}
.ws156{word-spacing:15.109793pt;}
.wscc{word-spacing:15.111272pt;}
.wsb7{word-spacing:15.116585pt;}
.ws10e{word-spacing:15.127212pt;}
.wsd6{word-spacing:15.169719pt;}
.ws9f{word-spacing:15.249420pt;}
.ws15d{word-spacing:15.260047pt;}
.ws39{word-spacing:15.270673pt;}
.ws44{word-spacing:15.281300pt;}
.wseb{word-spacing:15.291927pt;}
.ws14d{word-spacing:15.302554pt;}
.ws42{word-spacing:15.334434pt;}
.wse9{word-spacing:15.339747pt;}
.ws281{word-spacing:15.345292pt;}
.ws259{word-spacing:15.398195pt;}
.ws153{word-spacing:15.403508pt;}
.ws38{word-spacing:15.408821pt;}
.ws43{word-spacing:15.430075pt;}
.ws140{word-spacing:15.446015pt;}
.ws155{word-spacing:15.467269pt;}
.ws2c9{word-spacing:15.506821pt;}
.ws13a{word-spacing:15.541656pt;}
.ws15f{word-spacing:15.562910pt;}
.ws25c{word-spacing:15.594790pt;}
.ws11c{word-spacing:15.711684pt;}
.ws154{word-spacing:15.865773pt;}
.ws1a7{word-spacing:15.897653pt;}
.ws28e{word-spacing:15.902143pt;}
.ws2af{word-spacing:15.944651pt;}
.ws2b2{word-spacing:15.974406pt;}
.ws99{word-spacing:16.014547pt;}
.ws1a8{word-spacing:16.019861pt;}
.ws152{word-spacing:16.062368pt;}
.ws219{word-spacing:16.099562pt;}
.ws21d{word-spacing:16.110188pt;}
.ws16a{word-spacing:16.136755pt;}
.ws19e{word-spacing:16.158009pt;}
.ws1b3{word-spacing:16.243023pt;}
.ws145{word-spacing:16.285530pt;}
.ws122{word-spacing:16.290844pt;}
.ws20a{word-spacing:16.301470pt;}
.ws256{word-spacing:16.317410pt;}
.ws1c1{word-spacing:16.333351pt;}
.ws221{word-spacing:16.386484pt;}
.ws287{word-spacing:16.407985pt;}
.ws2c3{word-spacing:16.420737pt;}
.ws1c0{word-spacing:16.450245pt;}
.ws135{word-spacing:16.471499pt;}
.wscd{word-spacing:16.492752pt;}
.ws37{word-spacing:16.503379pt;}
.ws169{word-spacing:16.561826pt;}
.ws254{word-spacing:16.572453pt;}
.wsd4{word-spacing:16.599020pt;}
.ws11a{word-spacing:16.604333pt;}
.ws175{word-spacing:16.614960pt;}
.ws144{word-spacing:16.620273pt;}
.ws19f{word-spacing:16.753108pt;}
.ws174{word-spacing:16.795615pt;}
.ws222{word-spacing:16.832809pt;}
.wsd5{word-spacing:16.885943pt;}
.ws26{word-spacing:16.928374pt;}
.wsb0{word-spacing:16.939077pt;}
.ws1a1{word-spacing:16.960330pt;}
.ws1bd{word-spacing:16.981584pt;}
.ws91{word-spacing:17.013464pt;}
.ws209{word-spacing:17.034718pt;}
.ws9b{word-spacing:17.055971pt;}
.ws25a{word-spacing:17.066598pt;}
.ws173{word-spacing:17.077225pt;}
.ws22{word-spacing:17.129220pt;}
.ws1be{word-spacing:17.146299pt;}
.ws24{word-spacing:17.162694pt;}
.wsa3{word-spacing:17.199433pt;}
.ws172{word-spacing:17.210059pt;}
.ws1a0{word-spacing:17.220686pt;}
.ws110{word-spacing:17.241940pt;}
.ws1ac{word-spacing:17.305700pt;}
.wsfc{word-spacing:17.396028pt;}
.ws3a{word-spacing:17.406655pt;}
.ws296{word-spacing:17.406917pt;}
.wsff{word-spacing:17.502296pt;}
.ws100{word-spacing:17.587310pt;}
.wsfe{word-spacing:17.619190pt;}
.ws112{word-spacing:17.629817pt;}
.ws284{word-spacing:17.640709pt;}
.ws232{word-spacing:17.645757pt;}
.ws258{word-spacing:17.656384pt;}
.wsfd{word-spacing:17.661697pt;}
.ws3d{word-spacing:17.672324pt;}
.ws111{word-spacing:17.704204pt;}
.ws26e{word-spacing:17.762652pt;}
.wsaf{word-spacing:17.773278pt;}
.ws3c{word-spacing:17.805159pt;}
.ws3b{word-spacing:17.815785pt;}
.ws58{word-spacing:17.826412pt;}
.ws129{word-spacing:17.847666pt;}
.ws0{word-spacing:17.916710pt;}
.wse1{word-spacing:17.927367pt;}
.ws2c0{word-spacing:17.929762pt;}
.ws59{word-spacing:17.953934pt;}
.ws179{word-spacing:18.012381pt;}
.wscb{word-spacing:18.044261pt;}
.ws252{word-spacing:18.086768pt;}
.wse0{word-spacing:18.129275pt;}
.wsbb{word-spacing:18.182409pt;}
.ws123{word-spacing:18.193036pt;}
.ws17e{word-spacing:18.240856pt;}
.wsb8{word-spacing:18.299304pt;}
.ws16c{word-spacing:18.325871pt;}
.ws2a9{word-spacing:18.333585pt;}
.ws16b{word-spacing:18.357751pt;}
.ws21c{word-spacing:18.368378pt;}
.ws207{word-spacing:18.379004pt;}
.ws236{word-spacing:18.421512pt;}
.ws17a{word-spacing:18.432138pt;}
.ws151{word-spacing:18.453392pt;}
.ws2bc{word-spacing:18.456858pt;}
.ws92{word-spacing:18.474645pt;}
.ws2cf{word-spacing:18.486613pt;}
.ws215{word-spacing:18.495899pt;}
.ws16d{word-spacing:18.511839pt;}
.wsd1{word-spacing:18.527779pt;}
.ws24c{word-spacing:18.543719pt;}
.ws93{word-spacing:18.554346pt;}
.wsd2{word-spacing:18.559660pt;}
.ws214{word-spacing:18.564973pt;}
.ws160{word-spacing:18.660614pt;}
.ws13b{word-spacing:18.724375pt;}
.ws7f{word-spacing:18.729688pt;}
.ws6f{word-spacing:18.793449pt;}
.ws15c{word-spacing:18.857209pt;}
.ws46{word-spacing:18.878463pt;}
.ws208{word-spacing:18.889090pt;}
.ws2bd{word-spacing:18.894687pt;}
.ws2ac{word-spacing:18.915941pt;}
.ws45{word-spacing:19.064431pt;}
.ws265{word-spacing:19.133505pt;}
.ws1bf{word-spacing:19.170699pt;}
.ws15b{word-spacing:19.176012pt;}
.ws1b{word-spacing:19.190273pt;}
.ws8{word-spacing:19.195850pt;}
.wsab{word-spacing:19.197266pt;}
.ws264{word-spacing:19.213206pt;}
.ws6{word-spacing:19.251110pt;}
.ws2a{word-spacing:19.257221pt;}
.ws18{word-spacing:19.271567pt;}
.wsaa{word-spacing:19.282280pt;}
.ws20c{word-spacing:19.356668pt;}
.ws4{word-spacing:19.396166pt;}
.ws9{word-spacing:19.403074pt;}
.wsdd{word-spacing:19.473562pt;}
.ws2aa{word-spacing:19.596065pt;}
.ws25d{word-spacing:19.627650pt;}
.ws23d{word-spacing:19.680784pt;}
.ws1b8{word-spacing:19.712665pt;}
.ws4e{word-spacing:19.723291pt;}
.ws1f7{word-spacing:19.733918pt;}
.ws2a8{word-spacing:19.804353pt;}
.ws2ad{word-spacing:19.825607pt;}
.ws27d{word-spacing:20.036781pt;}
.ws213{word-spacing:20.100542pt;}
.ws90{word-spacing:20.244003pt;}
.ws136{word-spacing:20.265257pt;}
.ws1f9{word-spacing:20.376838pt;}
.ws1fa{word-spacing:20.419345pt;}
.ws9e{word-spacing:20.440599pt;}
.ws278{word-spacing:20.451225pt;}
.ws114{word-spacing:20.525613pt;}
.ws40{word-spacing:20.568120pt;}
.ws2ee{word-spacing:20.607749pt;}
.ws206{word-spacing:20.610627pt;}
.ws113{word-spacing:20.615940pt;}
.ws205{word-spacing:20.642507pt;}
.ws273{word-spacing:20.685014pt;}
.ws2e9{word-spacing:20.697015pt;}
.ws1b7{word-spacing:20.738148pt;}
.ws2c7{word-spacing:20.756526pt;}
.ws24f{word-spacing:20.759402pt;}
.ws237{word-spacing:20.796595pt;}
.ws27f{word-spacing:20.845792pt;}
.ws41{word-spacing:20.849729pt;}
.ws1b0{word-spacing:20.945370pt;}
.ws277{word-spacing:20.987877pt;}
.ws27a{word-spacing:21.035698pt;}
.ws298{word-spacing:21.058331pt;}
.ws2c4{word-spacing:21.096588pt;}
.ws1f4{word-spacing:21.147279pt;}
.ws1f6{word-spacing:21.173846pt;}
.ws2b8{word-spacing:21.190105pt;}
.ws17c{word-spacing:21.226980pt;}
.wse4{word-spacing:21.248233pt;}
.ws204{word-spacing:21.290740pt;}
.ws17d{word-spacing:21.296054pt;}
.ws17b{word-spacing:21.327934pt;}
.ws200{word-spacing:21.434202pt;}
.wsde{word-spacing:21.753005pt;}
.ws1f3{word-spacing:21.901780pt;}
.ws22b{word-spacing:22.077122pt;}
.wsdf{word-spacing:22.098375pt;}
.ws242{word-spacing:22.284344pt;}
.ws2df{word-spacing:22.303808pt;}
.ws14f{word-spacing:22.364044pt;}
.ws27b{word-spacing:22.459685pt;}
.ws23f{word-spacing:22.486252pt;}
.ws233{word-spacing:22.518133pt;}
.ws4c{word-spacing:22.571267pt;}
.ws14e{word-spacing:22.592520pt;}
.wsfa{word-spacing:22.682848pt;}
.ws261{word-spacing:22.735982pt;}
.ws4b{word-spacing:22.746608pt;}
.ws142{word-spacing:22.805056pt;}
.ws4a{word-spacing:22.810369pt;}
.ws161{word-spacing:22.820996pt;}
.ws96{word-spacing:22.852876pt;}
.ws2c2{word-spacing:22.869161pt;}
.ws162{word-spacing:22.964457pt;}
.ws238{word-spacing:22.969771pt;}
.ws16e{word-spacing:23.214186pt;}
.ws6a{word-spacing:23.224813pt;}
.ws243{word-spacing:23.251380pt;}
.ws25b{word-spacing:23.256693pt;}
.ws95{word-spacing:23.267320pt;}
.ws94{word-spacing:23.288574pt;}
.ws244{word-spacing:23.357648pt;}
.ws7a{word-spacing:23.410782pt;}
.ws119{word-spacing:23.437349pt;}
.ws68{word-spacing:23.453289pt;}
.ws8f{word-spacing:23.474542pt;}
.ws218{word-spacing:23.490482pt;}
.ws9d{word-spacing:23.564870pt;}
.ws170{word-spacing:23.591437pt;}
.ws79{word-spacing:23.676451pt;}
.wsf8{word-spacing:23.718958pt;}
.ws16f{word-spacing:23.729585pt;}
.ws1f8{word-spacing:23.745525pt;}
.ws217{word-spacing:23.819912pt;}
.ws124{word-spacing:23.830539pt;}
.ws1ab{word-spacing:23.894300pt;}
.ws224{word-spacing:24.005881pt;}
.wsf7{word-spacing:24.154656pt;}
.wsf9{word-spacing:24.197163pt;}
.wsc2{word-spacing:24.260924pt;}
.wsc1{word-spacing:24.324684pt;}
.ws23e{word-spacing:24.345938pt;}
.ws141{word-spacing:24.478772pt;}
.ws20d{word-spacing:24.574413pt;}
.ws168{word-spacing:24.590353pt;}
.wsa8{word-spacing:24.717875pt;}
.ws1b6{word-spacing:24.728502pt;}
.ws289{word-spacing:24.752253pt;}
.ws7b{word-spacing:24.781635pt;}
.ws250{word-spacing:24.802889pt;}
.ws73{word-spacing:24.824143pt;}
.ws78{word-spacing:24.887903pt;}
.ws21f{word-spacing:24.914470pt;}
.ws234{word-spacing:24.925097pt;}
.ws1b5{word-spacing:24.946350pt;}
.ws262{word-spacing:24.967604pt;}
.ws263{word-spacing:24.988857pt;}
.wse6{word-spacing:24.999484pt;}
.wsb6{word-spacing:25.004798pt;}
.ws251{word-spacing:25.015424pt;}
.ws1b4{word-spacing:25.031365pt;}
.ws3{word-spacing:25.047807pt;}
.wsca{word-spacing:25.084498pt;}
.wsae{word-spacing:25.137632pt;}
.ws1{word-spacing:25.156199pt;}
.ws21b{word-spacing:25.174826pt;}
.ws2{word-spacing:25.192330pt;}
.ws83{word-spacing:25.206706pt;}
.ws84{word-spacing:25.238587pt;}
.wsac{word-spacing:25.249213pt;}
.ws143{word-spacing:25.312974pt;}
.ws47{word-spacing:25.424555pt;}
.ws61{word-spacing:25.488316pt;}
.wse5{word-spacing:25.700851pt;}
.ws271{word-spacing:25.727418pt;}
.wsa7{word-spacing:25.833686pt;}
.wsa9{word-spacing:25.892133pt;}
.ws1b9{word-spacing:25.918700pt;}
.wsbf{word-spacing:25.924014pt;}
.ws274{word-spacing:25.929327pt;}
.wsbe{word-spacing:26.040908pt;}
.wsc0{word-spacing:26.136549pt;}
.wsa0{word-spacing:26.200310pt;}
.ws1fc{word-spacing:26.301264pt;}
.ws66{word-spacing:26.354398pt;}
.ws98{word-spacing:26.418159pt;}
.ws1fd{word-spacing:26.588187pt;}
.ws27c{word-spacing:26.593500pt;}
.ws33{word-spacing:26.614754pt;}
.ws97{word-spacing:26.657261pt;}
.wse2{word-spacing:26.678514pt;}
.ws22d{word-spacing:26.731648pt;}
.wsea{word-spacing:26.736962pt;}
.ws24e{word-spacing:26.747588pt;}
.ws24b{word-spacing:26.821976pt;}
.ws269{word-spacing:26.837916pt;}
.wsd3{word-spacing:26.843229pt;}
.ws6e{word-spacing:26.864483pt;}
.ws20b{word-spacing:26.917617pt;}
.ws6c{word-spacing:26.970751pt;}
.ws268{word-spacing:26.976064pt;}
.ws24d{word-spacing:27.002631pt;}
.ws139{word-spacing:27.220480pt;}
.ws245{word-spacing:27.231107pt;}
.ws2e6{word-spacing:27.264460pt;}
.wsb4{word-spacing:27.284241pt;}
.ws223{word-spacing:27.300181pt;}
.wsb5{word-spacing:27.326748pt;}
.ws2bf{word-spacing:27.340974pt;}
.ws276{word-spacing:27.363941pt;}
.ws24a{word-spacing:27.411762pt;}
.ws247{word-spacing:27.502089pt;}
.wsda{word-spacing:27.512716pt;}
.wsd9{word-spacing:27.874026pt;}
.ws77{word-spacing:27.905907pt;}
.ws22c{word-spacing:27.943100pt;}
.ws2b1{word-spacing:27.987092pt;}
.ws10b{word-spacing:28.107815pt;}
.ws76{word-spacing:28.118442pt;}
.ws120{word-spacing:28.203456pt;}
.ws2c8{word-spacing:28.352658pt;}
.ws240{word-spacing:28.389425pt;}
.ws115{word-spacing:28.431932pt;}
.ws1a9{word-spacing:28.575393pt;}
.ws266{word-spacing:28.957957pt;}
.ws230{word-spacing:29.016405pt;}
.ws74{word-spacing:29.058912pt;}
.ws22e{word-spacing:29.106732pt;}
.ws22f{word-spacing:29.149239pt;}
.ws2ed{word-spacing:29.572630pt;}
.ws50{word-spacing:29.616817pt;}
.ws9c{word-spacing:30.068455pt;}
.ws105{word-spacing:30.095022pt;}
.wsb2{word-spacing:30.302244pt;}
.ws28b{word-spacing:30.312265pt;}
.ws71{word-spacing:30.466959pt;}
.ws70{word-spacing:30.615734pt;}
.ws7c{word-spacing:30.684808pt;}
.ws65{word-spacing:30.828269pt;}
.ws80{word-spacing:31.024865pt;}
.ws81{word-spacing:31.072685pt;}
.wsc5{word-spacing:31.290534pt;}
.ws103{word-spacing:31.311788pt;}
.ws235{word-spacing:31.317101pt;}
.wsb1{word-spacing:31.418055pt;}
.ws104{word-spacing:31.433996pt;}
.wsc6{word-spacing:31.492443pt;}
.ws210{word-spacing:31.577457pt;}
.ws20e{word-spacing:31.736859pt;}
.wsa2{word-spacing:31.880320pt;}
.wsa1{word-spacing:32.007841pt;}
.ws1ff{word-spacing:32.215063pt;}
.ws1ae{word-spacing:32.231004pt;}
.ws1af{word-spacing:32.236317pt;}
.wsc3{word-spacing:32.246944pt;}
.wsc4{word-spacing:32.321331pt;}
.ws1bc{word-spacing:32.942997pt;}
.ws102{word-spacing:32.964251pt;}
.ws5b{word-spacing:33.070519pt;}
.ws1bb{word-spacing:33.086459pt;}
.ws5a{word-spacing:33.171473pt;}
.ws1ba{word-spacing:33.267114pt;}
.ws26b{word-spacing:33.341501pt;}
.ws26a{word-spacing:33.352128pt;}
.ws4f{word-spacing:33.389322pt;}
.ws229{word-spacing:33.437142pt;}
.ws228{word-spacing:33.601857pt;}
.ws241{word-spacing:33.676245pt;}
.ws201{word-spacing:33.777199pt;}
.wsdc{word-spacing:33.894094pt;}
.ws21e{word-spacing:34.255404pt;}
.ws8b{word-spacing:34.457313pt;}
.ws25e{word-spacing:34.526387pt;}
.ws8c{word-spacing:34.733609pt;}
.ws8d{word-spacing:35.456229pt;}
.ws67{word-spacing:35.748465pt;}
.wsfb{word-spacing:36.874903pt;}
.ws26f{word-spacing:37.060872pt;}
.ws2be{word-spacing:37.219771pt;}
.ws171{word-spacing:37.501883pt;}
.ws2ae{word-spacing:38.269712pt;}
.wsc7{word-spacing:39.335001pt;}
.ws203{word-spacing:40.201084pt;}
.ws202{word-spacing:40.232964pt;}
.ws267{word-spacing:42.140470pt;}
.ws48{word-spacing:42.241424pt;}
.ws5c{word-spacing:45.344442pt;}
.ws5d{word-spacing:45.466650pt;}
.ws22a{word-spacing:46.268971pt;}
.ws108{word-spacing:47.459170pt;}
.ws10a{word-spacing:47.623885pt;}
.ws7e{word-spacing:47.857674pt;}
.ws85{word-spacing:47.926748pt;}
.ws86{word-spacing:48.059582pt;}
.ws7d{word-spacing:48.123343pt;}
.ws87{word-spacing:48.208357pt;}
.ws60{word-spacing:48.691875pt;}
.ws8a{word-spacing:49.457003pt;}
.ws62{word-spacing:49.573898pt;}
.ws5f{word-spacing:52.421873pt;}
.ws5e{word-spacing:52.575961pt;}
.ws6b{word-spacing:53.351716pt;}
.ws260{word-spacing:53.505804pt;}
.ws166{word-spacing:55.014806pt;}
.ws165{word-spacing:55.110447pt;}
.ws82{word-spacing:55.307042pt;}
.ws2a0{word-spacing:56.186722pt;}
.ws106{word-spacing:58.032809pt;}
.ws107{word-spacing:58.043436pt;}
.ws72{word-spacing:58.580088pt;}
.ws63{word-spacing:59.690586pt;}
.ws1d1{word-spacing:68.492711pt;}
.ws1cf{word-spacing:68.586228pt;}
.ws30{word-spacing:202.171031pt;}
.ws1ce{word-spacing:203.650300pt;}
.ws1cc{word-spacing:203.952105pt;}
._27{margin-left:-2372.279564pt;}
._1b{margin-left:-48.864028pt;}
._2b{margin-left:-47.830042pt;}
._22{margin-left:-32.076915pt;}
._21{margin-left:-31.088625pt;}
._20{margin-left:-28.803869pt;}
._1f{margin-left:-27.879340pt;}
._7{margin-left:-26.741615pt;}
._2e{margin-left:-25.068558pt;}
._14{margin-left:-22.496879pt;}
._57{margin-left:-20.772153pt;}
._10{margin-left:-17.854019pt;}
._c{margin-left:-16.746657pt;}
._2c{margin-left:-15.764818pt;}
._3a{margin-left:-12.123206pt;}
._16{margin-left:-10.346382pt;}
._26{margin-left:-9.232680pt;}
._6{margin-left:-6.047293pt;}
._2{margin-left:-4.823487pt;}
._8{margin-left:-3.120068pt;}
._3{margin-left:-2.079147pt;}
._5{margin-left:-0.901164pt;}
._1{width:0.921340pt;}
._5e{width:8.118977pt;}
._15{width:9.020141pt;}
._9{width:10.639686pt;}
._4{width:12.382503pt;}
._e{width:14.025684pt;}
._b{width:15.329342pt;}
._d{width:16.250777pt;}
._1d{width:17.266126pt;}
._f{width:18.676043pt;}
._12{width:20.206809pt;}
._11{width:21.742378pt;}
._58{width:22.936876pt;}
._1c{width:23.926180pt;}
._28{width:24.818829pt;}
._0{width:26.294326pt;}
._1a{width:27.480841pt;}
._23{width:28.844264pt;}
._5b{width:30.114151pt;}
._1e{width:31.125819pt;}
._19{width:32.833029pt;}
._24{width:33.739494pt;}
._59{width:34.770802pt;}
._29{width:35.802709pt;}
._5d{width:38.143788pt;}
._60{width:39.312229pt;}
._25{width:41.412536pt;}
._13{width:43.445439pt;}
._5a{width:47.390096pt;}
._17{width:49.648285pt;}
._18{width:51.051019pt;}
._5c{width:54.595048pt;}
._5f{width:57.237182pt;}
._2a{width:59.064684pt;}
._3e{width:68.628735pt;}
._37{width:70.601094pt;}
._31{width:89.793336pt;}
._30{width:102.579662pt;}
._40{width:121.300068pt;}
._33{width:122.838848pt;}
._38{width:142.226625pt;}
._32{width:163.165934pt;}
._3c{width:177.287003pt;}
._2f{width:198.515365pt;}
._a{width:204.828548pt;}
._36{width:230.425921pt;}
._2d{width:241.954537pt;}
._4f{width:255.900805pt;}
._41{width:271.539401pt;}
._51{width:277.197180pt;}
._4c{width:298.272514pt;}
._48{width:314.450957pt;}
._43{width:399.024344pt;}
._34{width:434.675580pt;}
._49{width:446.667011pt;}
._56{width:512.162927pt;}
._42{width:545.242445pt;}
._45{width:553.425183pt;}
._50{width:574.717307pt;}
._4b{width:595.886158pt;}
._47{width:609.365360pt;}
._46{width:637.250433pt;}
._53{width:664.153578pt;}
._55{width:673.590295pt;}
._54{width:685.318178pt;}
._44{width:703.622008pt;}
._39{width:733.186137pt;}
._35{width:754.716304pt;}
._4e{width:761.066959pt;}
._4a{width:768.391042pt;}
._3b{width:775.970170pt;}
._52{width:782.495108pt;}
._4d{width:803.039095pt;}
._3f{width:905.380714pt;}
._3d{width:1091.262781pt;}
.fsa{font-size:27.753600pt;}
.fs4{font-size:28.334400pt;}
.fsb{font-size:34.177600pt;}
.fs5{font-size:42.507733pt;}
.fs8{font-size:42.915200pt;}
.fsc{font-size:43.000533pt;}
.fs3{font-size:46.043733pt;}
.fs9{font-size:47.026667pt;}
.fs6{font-size:47.820267pt;}
.fs7{font-size:53.133867pt;}
.fs0{font-size:63.760533pt;}
.fs2{font-size:69.074667pt;}
.fs1{font-size:90.327467pt;}
.y0{bottom:0.000000pt;}
.y148{bottom:0.834000pt;}
.y14d{bottom:6.659867pt;}
.y132{bottom:33.512667pt;}
.y12b{bottom:37.690133pt;}
.y43{bottom:39.836136pt;}
.y144{bottom:50.044400pt;}
.y1e9{bottom:52.913616pt;}
.y113{bottom:52.914183pt;}
.y217{bottom:52.914230pt;}
.y1b0{bottom:52.915423pt;}
.ydf{bottom:52.917778pt;}
.y42{bottom:53.139993pt;}
.y179{bottom:53.744601pt;}
.y25a{bottom:54.047811pt;}
.y119{bottom:54.955224pt;}
.y216{bottom:66.218088pt;}
.y41{bottom:66.368400pt;}
.y259{bottom:67.351668pt;}
.y1e7{bottom:68.863075pt;}
.y112{bottom:68.863641pt;}
.y1af{bottom:68.864881pt;}
.yde{bottom:68.867236pt;}
.y1e8{bottom:69.240325pt;}
.y13d{bottom:70.432933pt;}
.y12f{bottom:70.453867pt;}
.y136{bottom:70.454667pt;}
.y118{bottom:70.904682pt;}
.y178{bottom:74.381043pt;}
.y215{bottom:79.521946pt;}
.y258{bottom:80.655526pt;}
.y1e6{bottom:84.812533pt;}
.y111{bottom:84.813100pt;}
.y1ae{bottom:84.814340pt;}
.ydd{bottom:84.816695pt;}
.y1e5{bottom:84.819653pt;}
.y117{bottom:86.854140pt;}
.y177{bottom:87.684901pt;}
.y40{bottom:91.615736pt;}
.y214{bottom:92.825804pt;}
.y257{bottom:93.959384pt;}
.y3d{bottom:94.037784pt;}
.yab{bottom:95.400846pt;}
.y110{bottom:100.762558pt;}
.y79{bottom:100.763382pt;}
.y1ad{bottom:100.763798pt;}
.ydc{bottom:100.766153pt;}
.y1e4{bottom:100.769112pt;}
.y176{bottom:100.913308pt;}
.y116{bottom:102.803599pt;}
.y3f{bottom:104.919593pt;}
.y213{bottom:106.054211pt;}
.y256{bottom:107.187791pt;}
.y3c{bottom:109.987242pt;}
.yaa{bottom:111.350305pt;}
.y175{bottom:114.217166pt;}
.y10f{bottom:116.712016pt;}
.y78{bottom:116.712840pt;}
.y1ac{bottom:116.713257pt;}
.ydb{bottom:116.715612pt;}
.y1e3{bottom:116.718570pt;}
.y3e{bottom:118.148000pt;}
.y115{bottom:118.753057pt;}
.y212{bottom:119.358068pt;}
.y255{bottom:120.491649pt;}
.y3b{bottom:125.860985pt;}
.ya9{bottom:127.299763pt;}
.y174{bottom:127.521023pt;}
.y10e{bottom:132.661475pt;}
.y211{bottom:132.661926pt;}
.y77{bottom:132.662299pt;}
.y1ab{bottom:132.662715pt;}
.yda{bottom:132.665070pt;}
.y1e2{bottom:132.668028pt;}
.y254{bottom:133.795506pt;}
.y114{bottom:134.626800pt;}
.y173{bottom:140.824881pt;}
.y3a{bottom:141.810443pt;}
.ya8{bottom:143.249221pt;}
.y210{bottom:145.965784pt;}
.y253{bottom:147.099364pt;}
.y76{bottom:148.611757pt;}
.y1aa{bottom:148.612173pt;}
.yd9{bottom:148.614529pt;}
.y1e0{bottom:148.617487pt;}
.y10d{bottom:148.619842pt;}
.y1e1{bottom:148.920350pt;}
.y172{bottom:154.053288pt;}
.y39{bottom:157.759902pt;}
.y20f{bottom:159.194191pt;}
.ya7{bottom:159.198680pt;}
.y252{bottom:160.327771pt;}
.y75{bottom:164.561215pt;}
.y1a9{bottom:164.561632pt;}
.yd8{bottom:164.563987pt;}
.y1df{bottom:164.566945pt;}
.y171{bottom:167.357146pt;}
.y20e{bottom:172.498049pt;}
.y251{bottom:173.631629pt;}
.y38{bottom:173.709360pt;}
.y10c{bottom:173.866399pt;}
.ya6{bottom:175.072423pt;}
.y31{bottom:180.360392pt;}
.y74{bottom:180.434958pt;}
.y1a8{bottom:180.435375pt;}
.yd7{bottom:180.437730pt;}
.y1de{bottom:180.440688pt;}
.y170{bottom:180.661004pt;}
.y20d{bottom:185.801906pt;}
.y14f{bottom:186.406267pt;}
.y250{bottom:186.935487pt;}
.y37{bottom:189.658819pt;}
.ya5{bottom:191.021881pt;}
.y30{bottom:196.309850pt;}
.y73{bottom:196.384416pt;}
.y1a7{bottom:196.384833pt;}
.yd6{bottom:196.387188pt;}
.y1dd{bottom:196.390146pt;}
.y20c{bottom:199.030313pt;}
.y24f{bottom:200.163893pt;}
.y16c{bottom:201.523799pt;}
.y36{bottom:205.608277pt;}
.ya4{bottom:206.971339pt;}
.y2f{bottom:212.259309pt;}
.y72{bottom:212.333875pt;}
.y20b{bottom:212.334171pt;}
.y1a6{bottom:212.334291pt;}
.yd5{bottom:212.336647pt;}
.y1dc{bottom:212.339605pt;}
.y24e{bottom:213.467751pt;}
.y16f{bottom:214.752206pt;}
.y129{bottom:214.769817pt;}
.y143{bottom:217.853333pt;}
.y35{bottom:221.557735pt;}
.ya3{bottom:222.920798pt;}
.y128{bottom:225.370000pt;}
.y20a{bottom:225.638029pt;}
.y24d{bottom:226.771609pt;}
.y2e{bottom:228.208767pt;}
.y1a5{bottom:228.283750pt;}
.yd4{bottom:228.286105pt;}
.y1db{bottom:228.289063pt;}
.y71{bottom:228.290408pt;}
.y10b{bottom:228.291418pt;}
.y147{bottom:230.957397pt;}
.y16d{bottom:235.539550pt;}
.y34{bottom:237.507194pt;}
.ya2{bottom:238.870256pt;}
.y209{bottom:238.941887pt;}
.y24c{bottom:240.075467pt;}
.y146{bottom:243.293372pt;}
.y2d{bottom:244.082510pt;}
.y1a4{bottom:244.233208pt;}
.yd3{bottom:244.235563pt;}
.y1da{bottom:244.238522pt;}
.y70{bottom:244.239866pt;}
.y10a{bottom:244.240877pt;}
.y16e{bottom:248.767957pt;}
.y208{bottom:252.170293pt;}
.y24b{bottom:253.309500pt;}
.y33{bottom:253.380937pt;}
.ya1{bottom:254.819715pt;}
.y145{bottom:255.627200pt;}
.y1a3{bottom:260.182667pt;}
.yd2{bottom:260.185022pt;}
.y1d9{bottom:260.187980pt;}
.y6f{bottom:260.189325pt;}
.y109{bottom:260.190335pt;}
.y207{bottom:265.474151pt;}
.y24a{bottom:266.613358pt;}
.y16b{bottom:268.044151pt;}
.y2c{bottom:269.329067pt;}
.y32{bottom:269.330395pt;}
.ya0{bottom:270.769173pt;}
.yd1{bottom:276.134480pt;}
.y1d8{bottom:276.137438pt;}
.y6e{bottom:276.138783pt;}
.y108{bottom:276.139794pt;}
.y206{bottom:278.778009pt;}
.y249{bottom:279.917216pt;}
.y16a{bottom:281.348009pt;}
.y9f{bottom:286.718632pt;}
.y205{bottom:292.081867pt;}
.yd0{bottom:292.083939pt;}
.y6d{bottom:292.088242pt;}
.y107{bottom:292.089252pt;}
.y248{bottom:293.221074pt;}
.y169{bottom:294.651867pt;}
.y1d7{bottom:301.383995pt;}
.y9e{bottom:302.592374pt;}
.y247{bottom:306.449481pt;}
.ycf{bottom:307.957681pt;}
.y6c{bottom:307.961984pt;}
.y106{bottom:307.962995pt;}
.y127{bottom:313.726516pt;}
.y9d{bottom:318.541833pt;}
.y246{bottom:319.753338pt;}
.y204{bottom:322.699936pt;}
.yce{bottom:323.907140pt;}
.y6b{bottom:323.911443pt;}
.y105{bottom:323.912453pt;}
.y126{bottom:327.024863pt;}
.y245{bottom:333.057196pt;}
.y9c{bottom:334.491291pt;}
.y15c{bottom:337.589122pt;}
.y168{bottom:337.590451pt;}
.ycd{bottom:339.856598pt;}
.y1d6{bottom:339.859556pt;}
.y6a{bottom:339.860901pt;}
.y104{bottom:339.861912pt;}
.y2b{bottom:341.064533pt;}
.y244{bottom:346.361054pt;}
.y15b{bottom:353.462865pt;}
.y167{bottom:353.464193pt;}
.y13c{bottom:353.665333pt;}
.ycc{bottom:355.806057pt;}
.y1d5{bottom:355.809015pt;}
.y69{bottom:355.810360pt;}
.y103{bottom:355.811370pt;}
.y243{bottom:359.589461pt;}
.y9b{bottom:359.737848pt;}
.y142{bottom:362.549961pt;}
.y2a{bottom:363.669817pt;}
.y15a{bottom:369.412323pt;}
.y166{bottom:369.413652pt;}
.ycb{bottom:371.755515pt;}
.y1d4{bottom:371.758473pt;}
.y68{bottom:371.759818pt;}
.y102{bottom:371.760828pt;}
.y242{bottom:372.893319pt;}
.y141{bottom:374.885935pt;}
.y29{bottom:378.333902pt;}
.y159{bottom:385.361782pt;}
.y165{bottom:385.363110pt;}
.y241{bottom:386.197176pt;}
.y140{bottom:387.156464pt;}
.yca{bottom:387.704973pt;}
.y1d3{bottom:387.707932pt;}
.y67{bottom:387.709277pt;}
.y101{bottom:387.710287pt;}
.y28{bottom:392.922670pt;}
.y240{bottom:399.425583pt;}
.y13f{bottom:399.491365pt;}
.y158{bottom:401.311240pt;}
.y164{bottom:401.312568pt;}
.yc9{bottom:403.654432pt;}
.y1d2{bottom:403.657390pt;}
.y66{bottom:403.658735pt;}
.y100{bottom:403.659745pt;}
.y9a{bottom:407.208973pt;}
.y27{bottom:407.511437pt;}
.y13e{bottom:411.826267pt;}
.y23f{bottom:412.729441pt;}
.y157{bottom:417.260699pt;}
.y163{bottom:417.262027pt;}
.yc8{bottom:419.603890pt;}
.y1d1{bottom:419.606849pt;}
.y65{bottom:419.608193pt;}
.yff{bottom:419.609204pt;}
.y26{bottom:422.175522pt;}
.y99{bottom:423.158431pt;}
.y23e{bottom:426.033299pt;}
.y203{bottom:430.038316pt;}
.y156{bottom:433.210157pt;}
.y162{bottom:433.211485pt;}
.yc7{bottom:435.477633pt;}
.y1d0{bottom:435.480591pt;}
.y64{bottom:435.481936pt;}
.yfe{bottom:435.482946pt;}
.y25{bottom:436.764290pt;}
.y98{bottom:439.107889pt;}
.y23d{bottom:439.337156pt;}
.y202{bottom:445.987775pt;}
.y155{bottom:449.159615pt;}
.y161{bottom:449.160944pt;}
.y24{bottom:451.353058pt;}
.yc6{bottom:451.427091pt;}
.y1cf{bottom:451.430050pt;}
.y63{bottom:451.431394pt;}
.yfd{bottom:451.432405pt;}
.y23c{bottom:452.565563pt;}
.y97{bottom:455.057348pt;}
.y125{bottom:459.879225pt;}
.y201{bottom:461.937233pt;}
.y154{bottom:465.109074pt;}
.y160{bottom:465.110402pt;}
.y23b{bottom:465.869421pt;}
.y23{bottom:465.941826pt;}
.y1ce{bottom:467.379508pt;}
.y62{bottom:467.380853pt;}
.yfc{bottom:467.381863pt;}
.y96{bottom:470.931091pt;}
.y124{bottom:473.179718pt;}
.y200{bottom:477.810976pt;}
.y23a{bottom:479.173279pt;}
.y22{bottom:480.605910pt;}
.y153{bottom:480.982816pt;}
.y15f{bottom:480.984145pt;}
.yc5{bottom:483.326008pt;}
.y1cd{bottom:483.328967pt;}
.y61{bottom:483.330311pt;}
.yfb{bottom:483.331322pt;}
.y14e{bottom:483.395200pt;}
.y123{bottom:486.478066pt;}
.y95{bottom:486.880549pt;}
.y239{bottom:492.477137pt;}
.y1ff{bottom:493.760434pt;}
.y21{bottom:495.194678pt;}
.y152{bottom:496.932275pt;}
.y15e{bottom:496.933603pt;}
.y1cc{bottom:499.278425pt;}
.y60{bottom:499.279770pt;}
.yc4{bottom:499.280233pt;}
.yfa{bottom:499.280780pt;}
.y94{bottom:502.830007pt;}
.y238{bottom:505.705543pt;}
.y1fe{bottom:509.709893pt;}
.y20{bottom:509.783446pt;}
.y151{bottom:512.881733pt;}
.y15d{bottom:512.883062pt;}
.y1cb{bottom:515.227883pt;}
.y5f{bottom:515.229228pt;}
.yc3{bottom:515.229691pt;}
.yf9{bottom:515.230238pt;}
.y135{bottom:518.449333pt;}
.y93{bottom:518.779466pt;}
.y237{bottom:519.009401pt;}
.y1f{bottom:524.447531pt;}
.y1fd{bottom:525.659351pt;}
.y13b{bottom:527.337840pt;}
.y1ca{bottom:531.177342pt;}
.y5e{bottom:531.178687pt;}
.yc2{bottom:531.179150pt;}
.yf8{bottom:531.179697pt;}
.y236{bottom:532.313259pt;}
.y92{bottom:534.728924pt;}
.y1e{bottom:539.036299pt;}
.y13a{bottom:539.671669pt;}
.y235{bottom:545.541666pt;}
.y1c9{bottom:547.126800pt;}
.y5d{bottom:547.128145pt;}
.yc1{bottom:547.128608pt;}
.yf7{bottom:547.129155pt;}
.y1fc{bottom:549.924260pt;}
.y91{bottom:550.678383pt;}
.y139{bottom:551.942197pt;}
.y1a0{bottom:551.962142pt;}
.y1d{bottom:553.625067pt;}
.y234{bottom:558.845523pt;}
.y1c8{bottom:563.000543pt;}
.y5c{bottom:563.001888pt;}
.yc0{bottom:563.002351pt;}
.yf6{bottom:563.002898pt;}
.y138{bottom:564.278172pt;}
.y19f{bottom:565.266000pt;}
.y1fb{bottom:565.873718pt;}
.y90{bottom:566.627841pt;}
.y19e{bottom:569.952667pt;}
.y233{bottom:572.149381pt;}
.y137{bottom:576.612000pt;}
.y19d{bottom:578.494400pt;}
.y1c7{bottom:578.950001pt;}
.y5b{bottom:578.951346pt;}
.ybf{bottom:578.951809pt;}
.yf5{bottom:578.952356pt;}
.y1fa{bottom:581.823177pt;}
.y8e{bottom:582.577300pt;}
.y8f{bottom:582.880163pt;}
.y19c{bottom:583.256533pt;}
.y232{bottom:585.453239pt;}
.y19b{bottom:591.798409pt;}
.y1c6{bottom:594.899460pt;}
.y5a{bottom:594.900805pt;}
.ybe{bottom:594.901268pt;}
.yf4{bottom:594.901815pt;}
.y1f9{bottom:597.696919pt;}
.y8d{bottom:598.451042pt;}
.y275{bottom:598.677995pt;}
.y28f{bottom:598.680120pt;}
.y231{bottom:598.681646pt;}
.y1c{bottom:599.206133pt;}
.y1b{bottom:603.968400pt;}
.y19a{bottom:605.102267pt;}
.y198{bottom:605.102275pt;}
.y199{bottom:609.788800pt;}
.y1c5{bottom:610.848918pt;}
.y59{bottom:610.850263pt;}
.ybd{bottom:610.850726pt;}
.y274{bottom:611.981853pt;}
.y28e{bottom:611.983978pt;}
.y230{bottom:611.985503pt;}
.y1a{bottom:612.510133pt;}
.y1f8{bottom:613.646378pt;}
.y14c{bottom:615.138667pt;}
.y19{bottom:617.196667pt;}
.y195{bottom:618.406131pt;}
.y197{bottom:618.406133pt;}
.y122{bottom:619.355326pt;}
.y1a2{bottom:620.147361pt;}
.y196{bottom:623.092667pt;}
.y8c{bottom:623.697599pt;}
.y273{bottom:625.285710pt;}
.y28d{bottom:625.287836pt;}
.y22f{bottom:625.289361pt;}
.y18{bottom:625.814000pt;}
.y1c4{bottom:626.798377pt;}
.y58{bottom:626.799721pt;}
.ybc{bottom:626.800184pt;}
.yf3{bottom:626.800732pt;}
.y17{bottom:630.500667pt;}
.y121{bottom:632.655820pt;}
.y14b{bottom:634.389097pt;}
.y1f7{bottom:637.911286pt;}
.y272{bottom:638.589568pt;}
.y28c{bottom:638.591694pt;}
.y22e{bottom:638.593219pt;}
.y16{bottom:639.042400pt;}
.y194{bottom:639.042573pt;}
.y1c3{bottom:642.747835pt;}
.y57{bottom:642.749180pt;}
.ybb{bottom:642.749643pt;}
.yf2{bottom:642.750190pt;}
.y15{bottom:643.804533pt;}
.y120{bottom:645.888722pt;}
.y14a{bottom:646.659626pt;}
.y271{bottom:651.817975pt;}
.y28b{bottom:651.820100pt;}
.y22d{bottom:651.821626pt;}
.y14{bottom:652.346267pt;}
.y193{bottom:652.346431pt;}
.y1f6{bottom:653.860745pt;}
.y13{bottom:657.032933pt;}
.y1c2{bottom:658.697293pt;}
.y56{bottom:658.698638pt;}
.yba{bottom:658.699101pt;}
.yf1{bottom:658.699649pt;}
.y149{bottom:658.995600pt;}
.y11f{bottom:659.508933pt;}
.y270{bottom:665.121833pt;}
.y28a{bottom:665.123958pt;}
.y22c{bottom:665.125484pt;}
.y192{bottom:665.574838pt;}
.y12{bottom:665.650133pt;}
.y1f5{bottom:669.810203pt;}
.y11{bottom:670.336800pt;}
.y8b{bottom:671.168724pt;}
.y11e{bottom:673.836049pt;}
.y1c1{bottom:674.646752pt;}
.y55{bottom:674.648097pt;}
.yb9{bottom:674.648560pt;}
.yf0{bottom:674.649107pt;}
.y26f{bottom:678.425691pt;}
.y289{bottom:678.427816pt;}
.y22b{bottom:678.429341pt;}
.y10{bottom:678.878533pt;}
.y191{bottom:678.878695pt;}
.yf{bottom:683.640800pt;}
.y1f4{bottom:685.759662pt;}
.y8a{bottom:687.118182pt;}
.y12e{bottom:690.497333pt;}
.y1c0{bottom:690.520495pt;}
.y54{bottom:690.521839pt;}
.yb8{bottom:690.522302pt;}
.yef{bottom:690.522850pt;}
.y26e{bottom:691.654097pt;}
.y288{bottom:691.656223pt;}
.y22a{bottom:691.657748pt;}
.ye{bottom:692.182533pt;}
.y190{bottom:692.182553pt;}
.yd{bottom:696.944667pt;}
.y134{bottom:699.340800pt;}
.y1f3{bottom:701.633404pt;}
.y89{bottom:703.067641pt;}
.y26d{bottom:704.957955pt;}
.y287{bottom:704.960080pt;}
.y229{bottom:704.961606pt;}
.yc{bottom:705.486400pt;}
.y18f{bottom:705.486411pt;}
.y1bf{bottom:706.469953pt;}
.y53{bottom:706.471298pt;}
.yb7{bottom:706.471761pt;}
.yee{bottom:706.472308pt;}
.yb{bottom:710.173067pt;}
.y133{bottom:711.675333pt;}
.y1f2{bottom:717.582863pt;}
.y26c{bottom:718.261813pt;}
.y286{bottom:718.263938pt;}
.y228{bottom:718.265464pt;}
.y18e{bottom:718.714818pt;}
.y88{bottom:719.017099pt;}
.y1be{bottom:722.419411pt;}
.y52{bottom:722.420756pt;}
.yb6{bottom:722.421219pt;}
.yed{bottom:722.421767pt;}
.y9{bottom:724.157333pt;}
.y7{bottom:724.157911pt;}
.ya{bottom:724.611499pt;}
.y26b{bottom:731.565671pt;}
.y285{bottom:731.567796pt;}
.y227{bottom:731.569322pt;}
.y8{bottom:731.791867pt;}
.y18d{bottom:732.018675pt;}
.y1f1{bottom:733.532321pt;}
.y87{bottom:734.966558pt;}
.y131{bottom:736.280299pt;}
.y1bd{bottom:738.368870pt;}
.y51{bottom:738.370215pt;}
.yb5{bottom:738.370678pt;}
.yec{bottom:738.371225pt;}
.y4{bottom:744.037600pt;}
.y6{bottom:744.718000pt;}
.y26a{bottom:744.794077pt;}
.y284{bottom:744.796203pt;}
.y226{bottom:744.797728pt;}
.y18c{bottom:745.322533pt;}
.y18a{bottom:745.322680pt;}
.y130{bottom:748.615200pt;}
.y1f0{bottom:749.481780pt;}
.y18b{bottom:750.009333pt;}
.y86{bottom:750.916016pt;}
.y5{bottom:751.747867pt;}
.y1bc{bottom:754.318328pt;}
.y50{bottom:754.319673pt;}
.yb4{bottom:754.320136pt;}
.yeb{bottom:754.320683pt;}
.y269{bottom:758.097935pt;}
.y283{bottom:758.100060pt;}
.y225{bottom:758.101586pt;}
.y189{bottom:758.551087pt;}
.y1ef{bottom:765.431238pt;}
.y85{bottom:766.789759pt;}
.y1bb{bottom:770.267787pt;}
.y4f{bottom:770.269131pt;}
.yb3{bottom:770.269595pt;}
.yea{bottom:770.270142pt;}
.y268{bottom:771.401793pt;}
.y282{bottom:771.403918pt;}
.y224{bottom:771.405444pt;}
.y188{bottom:771.854944pt;}
.y1ee{bottom:781.380696pt;}
.y84{bottom:782.739217pt;}
.y267{bottom:784.705651pt;}
.y281{bottom:784.707776pt;}
.y223{bottom:784.709302pt;}
.y187{bottom:785.158802pt;}
.y1ba{bottom:786.217245pt;}
.y4e{bottom:786.218590pt;}
.ye9{bottom:786.219600pt;}
.y3{bottom:787.804187pt;}
.y11d{bottom:787.804872pt;}
.y266{bottom:797.934057pt;}
.y280{bottom:797.936183pt;}
.y222{bottom:797.937708pt;}
.y186{bottom:798.462660pt;}
.y83{bottom:798.688675pt;}
.y11c{bottom:801.103220pt;}
.y1b9{bottom:802.166704pt;}
.y4d{bottom:802.168048pt;}
.ye8{bottom:802.169059pt;}
.y265{bottom:811.237915pt;}
.y27f{bottom:811.240041pt;}
.y221{bottom:811.241566pt;}
.yb2{bottom:811.465610pt;}
.y185{bottom:811.691067pt;}
.y11b{bottom:814.401568pt;}
.y2{bottom:814.412400pt;}
.y82{bottom:814.638134pt;}
.y184{bottom:816.453333pt;}
.y1b8{bottom:818.040446pt;}
.y4c{bottom:818.041791pt;}
.ye7{bottom:818.042801pt;}
.y264{bottom:824.541773pt;}
.y27e{bottom:824.543898pt;}
.y220{bottom:824.545424pt;}
.y183{bottom:824.995491pt;}
.y80{bottom:830.587592pt;}
.y81{bottom:830.966171pt;}
.y1ed{bottom:833.083934pt;}
.y1b7{bottom:833.989905pt;}
.y4b{bottom:833.991249pt;}
.ye6{bottom:833.992260pt;}
.y263{bottom:837.845631pt;}
.y27d{bottom:837.847756pt;}
.y21f{bottom:837.849282pt;}
.y182{bottom:838.299349pt;}
.y12a{bottom:843.397333pt;}
.y1{bottom:846.311600pt;}
.y7f{bottom:846.537051pt;}
.y1b6{bottom:849.939363pt;}
.y4a{bottom:849.940708pt;}
.ye5{bottom:849.941718pt;}
.y262{bottom:851.074038pt;}
.y27c{bottom:851.076163pt;}
.y21e{bottom:851.077688pt;}
.y181{bottom:851.603207pt;}
.y12d{bottom:856.160147pt;}
.yb1{bottom:856.366384pt;}
.y7d{bottom:862.486509pt;}
.y7e{bottom:862.789372pt;}
.y261{bottom:864.377895pt;}
.y27b{bottom:864.380021pt;}
.y21d{bottom:864.381546pt;}
.y180{bottom:864.831613pt;}
.y1b5{bottom:865.888821pt;}
.y49{bottom:865.890166pt;}
.ye4{bottom:865.891177pt;}
.y12c{bottom:868.751467pt;}
.yb0{bottom:872.315842pt;}
.y260{bottom:877.681753pt;}
.y27a{bottom:877.683879pt;}
.y21c{bottom:877.685404pt;}
.y17f{bottom:878.135471pt;}
.y7c{bottom:878.435968pt;}
.y1b4{bottom:881.838280pt;}
.y48{bottom:881.839625pt;}
.ye3{bottom:881.840635pt;}
.y1ec{bottom:887.736101pt;}
.yaf{bottom:888.265301pt;}
.y25f{bottom:890.910160pt;}
.y279{bottom:890.912285pt;}
.y21b{bottom:890.913811pt;}
.y44{bottom:894.084800pt;}
.y1b3{bottom:897.787738pt;}
.y47{bottom:897.789083pt;}
.ye2{bottom:897.790093pt;}
.y17e{bottom:898.998267pt;}
.y17c{bottom:898.998595pt;}
.y7b{bottom:903.608137pt;}
.y1eb{bottom:903.609843pt;}
.y17d{bottom:903.684800pt;}
.yae{bottom:904.139043pt;}
.y25e{bottom:904.214018pt;}
.y278{bottom:904.216143pt;}
.y21a{bottom:904.217669pt;}
.y1b2{bottom:913.737197pt;}
.y46{bottom:913.738542pt;}
.ye1{bottom:913.739552pt;}
.y25d{bottom:917.517875pt;}
.y277{bottom:917.520001pt;}
.y219{bottom:917.521526pt;}
.y17b{bottom:918.273727pt;}
.y11a{bottom:920.682133pt;}
.y7a{bottom:928.854694pt;}
.y1ea{bottom:928.856400pt;}
.yad{bottom:929.385600pt;}
.y1b1{bottom:929.686655pt;}
.y45{bottom:929.688000pt;}
.ye0{bottom:929.689010pt;}
.y25c{bottom:930.821733pt;}
.y276{bottom:930.823859pt;}
.y218{bottom:930.825384pt;}
.y17a{bottom:931.502133pt;}
.yac{bottom:963.703733pt;}
.y1a1{bottom:963.704800pt;}
.y150{bottom:963.706929pt;}
.y290{bottom:963.707841pt;}
.y25b{bottom:963.707990pt;}
.h8{height:19.437398pt;}
.h21{height:19.494067pt;}
.h22{height:19.947418pt;}
.h19{height:23.753432pt;}
.ha{height:29.160305pt;}
.he{height:29.245321pt;}
.h16{height:29.826064pt;}
.h1e{height:29.885371pt;}
.hb{height:30.435537pt;}
.h9{height:30.737342pt;}
.h5{height:31.678089pt;}
.h17{height:32.683533pt;}
.hd{height:32.900343pt;}
.hc{height:33.091625pt;}
.h12{height:36.449833pt;}
.h14{height:36.537036pt;}
.h10{height:36.556100pt;}
.hf{height:36.768636pt;}
.h11{height:36.821770pt;}
.h15{height:37.406242pt;}
.h13{height:38.043849pt;}
.h1c{height:38.563419pt;}
.h18{height:38.574520pt;}
.h23{height:39.255301pt;}
.h24{height:39.552850pt;}
.h2{height:43.867247pt;}
.h4{height:47.523371pt;}
.h6{height:49.457461pt;}
.h7{height:51.274125pt;}
.h1a{height:58.140000pt;}
.h20{height:58.141333pt;}
.h1f{height:59.938667pt;}
.h3{height:62.145297pt;}
.h1b{height:80.305333pt;}
.h1d{height:80.306667pt;}
.h0{height:1031.962667pt;}
.h1{height:1032.000000pt;}
.w5{width:152.193333pt;}
.w1{width:166.264000pt;}
.w3{width:171.530667pt;}
.w2{width:171.532000pt;}
.w4{width:173.716000pt;}
.w0{width:768.000000pt;}
.x0{left:0.000000pt;}
.x41{left:8.309867pt;}
.x4b{left:10.879200pt;}
.x4e{left:16.853733pt;}
.x2{left:49.285067pt;}
.x69{left:54.576400pt;}
.x57{left:59.866304pt;}
.x56{left:61.226552pt;}
.x4{left:64.025200pt;}
.x34{left:65.158809pt;}
.x6a{left:72.189479pt;}
.x68{left:79.822428pt;}
.x5c{left:82.696000pt;}
.x5d{left:86.248800pt;}
.x5a{left:112.403067pt;}
.x5b{left:120.415733pt;}
.x3e{left:125.782667pt;}
.x3f{left:127.891200pt;}
.x1a{left:145.284933pt;}
.x1e{left:146.192000pt;}
.x1b{left:149.291333pt;}
.x1f{left:150.198400pt;}
.x2c{left:153.524400pt;}
.x2d{left:157.455067pt;}
.x3{left:160.932074pt;}
.x52{left:180.812533pt;}
.x37{left:186.935333pt;}
.xf{left:190.110133pt;}
.x30{left:195.855067pt;}
.x31{left:198.122800pt;}
.x29{left:204.396800pt;}
.x10{left:206.286533pt;}
.x25{left:209.385733pt;}
.x26{left:212.938533pt;}
.x53{left:227.301078pt;}
.x20{left:229.417200pt;}
.x5{left:233.423600pt;}
.x6{left:242.494400pt;}
.x2a{left:251.489733pt;}
.x2b{left:255.496000pt;}
.x23{left:268.195200pt;}
.x24{left:272.201467pt;}
.x40{left:274.238667pt;}
.x48{left:276.038667pt;}
.x46{left:278.672000pt;}
.x44{left:282.548533pt;}
.x49{left:283.768533pt;}
.x4d{left:285.374997pt;}
.x47{left:286.403200pt;}
.x4c{left:288.587200pt;}
.x42{left:291.477867pt;}
.x11{left:317.253467pt;}
.x45{left:325.228267pt;}
.x4a{left:329.147066pt;}
.x1{left:331.540133pt;}
.x12{left:332.749467pt;}
.x43{left:337.178263pt;}
.x13{left:354.292128pt;}
.x61{left:359.508533pt;}
.x7{left:365.858133pt;}
.x62{left:367.445600pt;}
.x8{left:381.354267pt;}
.x35{left:399.949990pt;}
.x6b{left:405.241821pt;}
.x36{left:415.899448pt;}
.x21{left:417.637409pt;}
.x6c{left:422.854900pt;}
.x27{left:437.669481pt;}
.x54{left:440.466733pt;}
.x32{left:451.200029pt;}
.x14{left:456.264400pt;}
.x65{left:460.724267pt;}
.x15{left:462.765200pt;}
.x9{left:466.166800pt;}
.xa{left:481.662800pt;}
.x50{left:483.354667pt;}
.x4f{left:491.127467pt;}
.x2e{left:493.531833pt;}
.x22{left:495.193831pt;}
.x5e{left:497.310000pt;}
.x1c{left:501.770772pt;}
.x51{left:511.107333pt;}
.x28{left:515.225903pt;}
.x55{left:523.768076pt;}
.x33{left:528.756451pt;}
.x16{left:560.352533pt;}
.x3a{left:562.692740pt;}
.x3b{left:564.658693pt;}
.x2f{left:571.088255pt;}
.x17{left:575.848667pt;}
.x1d{left:579.327194pt;}
.xb{left:603.061333pt;}
.xc{left:608.881733pt;}
.x38{left:629.060925pt;}
.x39{left:631.026878pt;}
.x18{left:638.815406pt;}
.x66{left:646.525428pt;}
.x63{left:647.665390pt;}
.x67{left:648.565769pt;}
.x64{left:649.631343pt;}
.x5f{left:660.888000pt;}
.x58{left:672.377733pt;}
.x60{left:675.098933pt;}
.x59{left:679.332133pt;}
.x19{left:690.746267pt;}
.xd{left:695.357200pt;}
.xe{left:699.666000pt;}
.x3c{left:707.449318pt;}
.x3d{left:709.415271pt;}
}




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