
    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_25826aceca14628b55f3e49e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f38efb16c6d150ee795d8408.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964000;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_996e87d2c99fe0421fed7c86.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.953000;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_a088ec6643ede3e048b629ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_22675e174f497cce79672ecd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f6167418e94fa33108ca466a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5bd6b4c07739cf0379faea60.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877441;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_eb440eb0e526b067425cd019.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_855f7c24c90013e5fd503f54.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_0cb6c4035875afb601372d67.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_920ce4b45b612db7b6fb5e78.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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:ffe;src:url('chunks/assets/font_e1fdac7a707b324039a660b3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.877441;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:fff;src:url('chunks/assets/font_b7fa3513f97d9d4c616dd22f.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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:ff10;src:url('chunks/assets/font_af5f6f042107dbdd2874ab6a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.877441;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:ff11;src:url('chunks/assets/font_b8d9a4fd056dd1cc62465b6c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.910156;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:ff12;src:url('chunks/assets/font_2add0240d783c41b1543f0c2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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:ff13;src:url('chunks/assets/font_5f5eadc3bc2b62e5101ac383.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.692000;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.222491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222491,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.381466px;}
.v3{vertical-align:15.644153px;}
.v2{vertical-align:17.689151px;}
.ls1d{letter-spacing:-0.091102px;}
.ls1b{letter-spacing:-0.081828px;}
.ls1a{letter-spacing:-0.040914px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.040914px;}
.ls15{letter-spacing:0.047470px;}
.ls13{letter-spacing:0.047940px;}
.ls19{letter-spacing:0.081828px;}
.ls1c{letter-spacing:0.091102px;}
.ls14{letter-spacing:0.189881px;}
.ls16{letter-spacing:0.198982px;}
.ls2a{letter-spacing:0.203011px;}
.lse{letter-spacing:0.261902px;}
.ls28{letter-spacing:0.302731px;}
.ls27{letter-spacing:0.304435px;}
.ls26{letter-spacing:0.312953px;}
.ls17{letter-spacing:0.343561px;}
.ls2c{letter-spacing:0.533497px;}
.lsa{letter-spacing:0.566337px;}
.ls2d{letter-spacing:0.588472px;}
.lsd{letter-spacing:0.640796px;}
.ls1e{letter-spacing:0.651404px;}
.ls1f{letter-spacing:0.680308px;}
.ls2b{letter-spacing:0.761935px;}
.lsf{letter-spacing:0.818074px;}
.ls7{letter-spacing:0.850385px;}
.ls9{letter-spacing:0.853793px;}
.ls11{letter-spacing:1.170153px;}
.ls8{letter-spacing:1.646369px;}
.ls22{letter-spacing:1.676977px;}
.lsb{letter-spacing:1.850461px;}
.ls29{letter-spacing:1.950819px;}
.ls3{letter-spacing:9.085914px;}
.ls6{letter-spacing:10.104493px;}
.ls12{letter-spacing:10.880389px;}
.ls5{letter-spacing:11.123072px;}
.ls2{letter-spacing:11.802124px;}
.lsc{letter-spacing:12.213381px;}
.ls10{letter-spacing:12.339815px;}
.ls1{letter-spacing:13.504537px;}
.ls4{letter-spacing:13.848846px;}
.ls20{letter-spacing:17.716408px;}
.ls25{letter-spacing:17.717544px;}
.ls21{letter-spacing:17.722087px;}
.ls24{letter-spacing:22.203717px;}
.ls23{letter-spacing:22.544439px;}
.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;}
}
.ws2{word-spacing:-44.454445px;}
.ws1{word-spacing:-44.300224px;}
.ws3{word-spacing:-44.158854px;}
.ws33{word-spacing:-43.325282px;}
.ws3d{word-spacing:-30.688757px;}
.ws192{word-spacing:-26.008446px;}
.ws2c9{word-spacing:-23.270614px;}
.ws11{word-spacing:-19.616010px;}
.ws1a0{word-spacing:-19.602872px;}
.ws12b{word-spacing:-19.585836px;}
.wsab{word-spacing:-19.392761px;}
.ws58{word-spacing:-19.387082px;}
.ws24{word-spacing:-18.673944px;}
.ws1e{word-spacing:-17.784481px;}
.ws2e5{word-spacing:-17.574902px;}
.ws1ee{word-spacing:-17.024743px;}
.wsb{word-spacing:-16.670261px;}
.ws7b{word-spacing:-16.588966px;}
.ws11e{word-spacing:-16.584184px;}
.ws2a{word-spacing:-16.579402px;}
.ws79{word-spacing:-16.550710px;}
.ws2c{word-spacing:-16.493325px;}
.ws11d{word-spacing:-16.459851px;}
.ws1ba{word-spacing:-16.343299px;}
.ws7{word-spacing:-15.417361px;}
.ws17{word-spacing:-15.178258px;}
.ws1d5{word-spacing:-15.150772px;}
.wsf5{word-spacing:-14.946338px;}
.ws97{word-spacing:-14.764620px;}
.wsc1{word-spacing:-14.264894px;}
.wsb6{word-spacing:-13.833313px;}
.ws273{word-spacing:-13.210392px;}
.ws290{word-spacing:-12.626550px;}
.wsf7{word-spacing:-12.504497px;}
.ws5{word-spacing:-12.464851px;}
.ws28e{word-spacing:-12.463500px;}
.ws6{word-spacing:-12.452298px;}
.ws6f{word-spacing:-12.433356px;}
.ws15c{word-spacing:-12.152418px;}
.ws17f{word-spacing:-12.044523px;}
.ws159{word-spacing:-11.985000px;}
.ws19a{word-spacing:-11.867550px;}
.wsa9{word-spacing:-11.788981px;}
.ws29b{word-spacing:-11.650550px;}
.ws35{word-spacing:-11.554012px;}
.ws1be{word-spacing:-11.387700px;}
.ws15b{word-spacing:-11.363079px;}
.ws7c{word-spacing:-11.323328px;}
.ws13b{word-spacing:-11.272220px;}
.ws188{word-spacing:-11.266541px;}
.ws222{word-spacing:-11.221111px;}
.ws22d{word-spacing:-11.187039px;}
.ws1a5{word-spacing:-11.084822px;}
.ws2a5{word-spacing:-10.863007px;}
.wsc2{word-spacing:-10.749779px;}
.ws2b4{word-spacing:-10.685175px;}
.ws36{word-spacing:-10.410805px;}
.ws1bd{word-spacing:-10.228500px;}
.wsa3{word-spacing:-10.085371px;}
.ws2dc{word-spacing:-9.917956px;}
.ws1b3{word-spacing:-9.798441px;}
.ws109{word-spacing:-9.774531px;}
.ws211{word-spacing:-9.746921px;}
.ws113{word-spacing:-9.731492px;}
.ws112{word-spacing:-9.688454px;}
.ws111{word-spacing:-9.669325px;}
.ws11a{word-spacing:-9.645415px;}
.ws1b1{word-spacing:-9.621505px;}
.ws1ad{word-spacing:-9.616723px;}
.ws1b0{word-spacing:-9.602376px;}
.ws1ae{word-spacing:-9.597594px;}
.ws10c{word-spacing:-9.588030px;}
.ws1b2{word-spacing:-9.583248px;}
.ws11c{word-spacing:-9.564120px;}
.ws118{word-spacing:-9.559338px;}
.ws117{word-spacing:-9.544992px;}
.ws11b{word-spacing:-9.525864px;}
.ws10f{word-spacing:-9.521081px;}
.ws1af{word-spacing:-9.501953px;}
.ws69{word-spacing:-9.497171px;}
.ws10b{word-spacing:-9.458915px;}
.ws10e{word-spacing:-9.320235px;}
.ws285{word-spacing:-9.282841px;}
.ws268{word-spacing:-8.591836px;}
.ws293{word-spacing:-8.469894px;}
.ws23b{word-spacing:-8.387440px;}
.ws2ce{word-spacing:-8.068501px;}
.wsf6{word-spacing:-7.825249px;}
.ws2ac{word-spacing:-7.656946px;}
.ws1f8{word-spacing:-7.370953px;}
.ws1e0{word-spacing:-7.155162px;}
.ws26d{word-spacing:-6.894808px;}
.ws2c5{word-spacing:-6.813514px;}
.ws2a9{word-spacing:-6.716976px;}
.ws2cf{word-spacing:-6.605196px;}
.ws269{word-spacing:-6.600115px;}
.ws2b8{word-spacing:-6.589953px;}
.ws2e3{word-spacing:-6.518820px;}
.ws28a{word-spacing:-6.452768px;}
.ws220{word-spacing:-6.017151px;}
.ws183{word-spacing:-5.888812px;}
.ws208{word-spacing:-5.814989px;}
.wsfd{word-spacing:-5.752523px;}
.ws15f{word-spacing:-5.735487px;}
.ws18d{word-spacing:-5.678700px;}
.ws202{word-spacing:-5.661664px;}
.ws4{word-spacing:-5.641254px;}
.ws1fc{word-spacing:-5.525375px;}
.ws18e{word-spacing:-5.468588px;}
.ws4d{word-spacing:-5.461490px;}
.ws182{word-spacing:-5.428837px;}
.ws55{word-spacing:-5.372050px;}
.ws18a{word-spacing:-5.275512px;}
.ws15e{word-spacing:-5.247119px;}
.ws25c{word-spacing:-5.190332px;}
.ws9a{word-spacing:-5.150581px;}
.ws54{word-spacing:-5.088115px;}
.ws59{word-spacing:-5.083515px;}
.wsd3{word-spacing:-5.014292px;}
.ws249{word-spacing:-5.008613px;}
.ws39{word-spacing:-4.943735px;}
.ws253{word-spacing:-4.866646px;}
.wsff{word-spacing:-4.781465px;}
.ws22a{word-spacing:-4.747393px;}
.ws129{word-spacing:-4.724678px;}
.wsc7{word-spacing:-4.582711px;}
.ws4c{word-spacing:-4.557157px;}
.ws231{word-spacing:-4.520245px;}
.wsa0{word-spacing:-4.514566px;}
.ws247{word-spacing:-4.508888px;}
.ws230{word-spacing:-4.497530px;}
.wse3{word-spacing:-4.474816px;}
.wsb3{word-spacing:-4.418029px;}
.ws127{word-spacing:-4.344206px;}
.wsd1{word-spacing:-4.321491px;}
.ws8b{word-spacing:-4.310133px;}
.ws201{word-spacing:-4.304455px;}
.wsb5{word-spacing:-4.230631px;}
.ws130{word-spacing:-4.202238px;}
.ws190{word-spacing:-4.168166px;}
.ws100{word-spacing:-4.082985px;}
.ws1f6{word-spacing:-4.065949px;}
.wscc{word-spacing:-4.043234px;}
.ws246{word-spacing:-4.009162px;}
.wsf4{word-spacing:-3.992126px;}
.wsb4{word-spacing:-3.986447px;}
.ws2ec{word-spacing:-3.963118px;}
.ws232{word-spacing:-3.855837px;}
.ws216{word-spacing:-3.852430px;}
.wsf3{word-spacing:-3.827444px;}
.ws12e{word-spacing:-3.810408px;}
.ws22{word-spacing:-3.768263px;}
.ws53{word-spacing:-3.747942px;}
.wse0{word-spacing:-3.662762px;}
.ws144{word-spacing:-3.651404px;}
.ws89{word-spacing:-3.645725px;}
.ws235{word-spacing:-3.640047px;}
.ws1e4{word-spacing:-3.634368px;}
.ws197{word-spacing:-3.628689px;}
.ws225{word-spacing:-3.623011px;}
.ws142{word-spacing:-3.588938px;}
.ws166{word-spacing:-3.543509px;}
.ws77{word-spacing:-3.543506px;}
.wsd9{word-spacing:-3.537830px;}
.ws12a{word-spacing:-3.520794px;}
.ws1f0{word-spacing:-3.515115px;}
.ws12f{word-spacing:-3.486722px;}
.ws12{word-spacing:-3.457429px;}
.ws2b7{word-spacing:-3.394055px;}
.ws254{word-spacing:-3.384505px;}
.ws24b{word-spacing:-3.367469px;}
.ws4f{word-spacing:-3.361790px;}
.ws258{word-spacing:-3.293646px;}
.ws1ea{word-spacing:-3.287967px;}
.ws2f5{word-spacing:-3.267032px;}
.ws24f{word-spacing:-3.253895px;}
.wsc0{word-spacing:-3.214144px;}
.ws94{word-spacing:-3.185751px;}
.ws41{word-spacing:-3.154961px;}
.ws236{word-spacing:-3.146000px;}
.ws214{word-spacing:-3.128964px;}
.ws1f3{word-spacing:-3.117606px;}
.ws1db{word-spacing:-3.111928px;}
.ws128{word-spacing:-3.094891px;}
.ws11f{word-spacing:-3.060518px;}
.ws257{word-spacing:-3.055141px;}
.ws1ff{word-spacing:-3.049462px;}
.ws1f5{word-spacing:-3.043783px;}
.ws50{word-spacing:-3.039524px;}
.ws63{word-spacing:-3.028451px;}
.wsbf{word-spacing:-2.952924px;}
.ws24d{word-spacing:-2.947245px;}
.ws1cb{word-spacing:-2.805278px;}
.ws2ea{word-spacing:-2.779263px;}
.ws2e8{word-spacing:-2.753859px;}
.ws1de{word-spacing:-2.731455px;}
.ws255{word-spacing:-2.720097px;}
.wsb8{word-spacing:-2.697383px;}
.wsb9{word-spacing:-2.691704px;}
.ws1dc{word-spacing:-2.686025px;}
.ws1cf{word-spacing:-2.646274px;}
.ws1dd{word-spacing:-2.634917px;}
.ws1d1{word-spacing:-2.629238px;}
.ws46{word-spacing:-2.620430px;}
.ws1f4{word-spacing:-2.617881px;}
.ws25{word-spacing:-2.548838px;}
.ws8a{word-spacing:-2.527022px;}
.ws98{word-spacing:-2.521343px;}
.wsc6{word-spacing:-2.481592px;}
.wsf9{word-spacing:-2.475913px;}
.ws1fb{word-spacing:-2.464556px;}
.ws262{word-spacing:-2.447520px;}
.ws181{word-spacing:-2.385054px;}
.ws227{word-spacing:-2.368018px;}
.ws1fe{word-spacing:-2.345303px;}
.ws234{word-spacing:-2.339624px;}
.ws1d0{word-spacing:-2.316910px;}
.ws99{word-spacing:-2.271480px;}
.wsbc{word-spacing:-2.260123px;}
.wsd8{word-spacing:-2.214693px;}
.wsb7{word-spacing:-2.169263px;}
.wsb2{word-spacing:-2.163585px;}
.ws132{word-spacing:-2.129512px;}
.ws200{word-spacing:-2.055689px;}
.ws9d{word-spacing:-2.044332px;}
.ws14{word-spacing:-2.032376px;}
.wsf2{word-spacing:-2.027296px;}
.ws51{word-spacing:-1.997483px;}
.ws1b{word-spacing:-1.927170px;}
.ws123{word-spacing:-1.925079px;}
.ws13{word-spacing:-1.922388px;}
.ws9e{word-spacing:-1.828541px;}
.ws80{word-spacing:-1.817184px;}
.ws137{word-spacing:-1.808808px;}
.ws9c{word-spacing:-1.800148px;}
.wscf{word-spacing:-1.788790px;}
.ws2d1{word-spacing:-1.742756px;}
.ws86{word-spacing:-1.709289px;}
.ws2e{word-spacing:-1.676636px;}
.ws2d0{word-spacing:-1.666542px;}
.ws2aa{word-spacing:-1.646218px;}
.ws29a{word-spacing:-1.620813px;}
.ws20{word-spacing:-1.525477px;}
.ws1e5{word-spacing:-1.504855px;}
.ws34{word-spacing:-1.483629px;}
.ws250{word-spacing:-1.453747px;}
.wsf8{word-spacing:-1.448069px;}
.ws165{word-spacing:-1.425354px;}
.ws29c{word-spacing:-1.387091px;}
.ws2f4{word-spacing:-1.356606px;}
.ws203{word-spacing:-1.345852px;}
.ws9{word-spacing:-1.310284px;}
.wsa1{word-spacing:-1.289065px;}
.ws164{word-spacing:-1.260671px;}
.ws62{word-spacing:-1.250393px;}
.ws3a{word-spacing:-1.239744px;}
.ws27b{word-spacing:-1.224502px;}
.wsf{word-spacing:-1.224207px;}
.ws1f{word-spacing:-1.185951px;}
.ws2f1{word-spacing:-1.133045px;}
.ws136{word-spacing:-1.127964px;}
.ws72{word-spacing:-1.119002px;}
.wsac{word-spacing:-1.113025px;}
.ws2a4{word-spacing:-1.112721px;}
.wsfe{word-spacing:-1.073274px;}
.ws122{word-spacing:-1.022166px;}
.ws145{word-spacing:-0.982415px;}
.ws133{word-spacing:-0.948343px;}
.ws52{word-spacing:-0.934146px;}
.ws21{word-spacing:-0.927720px;}
.ws56{word-spacing:-0.908592px;}
.ws12d{word-spacing:-0.880199px;}
.ws74{word-spacing:-0.855989px;}
.ws180{word-spacing:-0.846126px;}
.ws221{word-spacing:-0.822276px;}
.ws21a{word-spacing:-0.791611px;}
.wsa7{word-spacing:-0.766625px;}
.ws2b3{word-spacing:-0.751976px;}
.wsf1{word-spacing:-0.749588px;}
.wsa8{word-spacing:-0.715516px;}
.ws95{word-spacing:-0.670087px;}
.ws65{word-spacing:-0.666566px;}
.ws2b5{word-spacing:-0.655439px;}
.ws146{word-spacing:-0.624657px;}
.ws66{word-spacing:-0.581385px;}
.ws25e{word-spacing:-0.579227px;}
.ws2e9{word-spacing:-0.579225px;}
.ws17a{word-spacing:-0.578629px;}
.wsd7{word-spacing:-0.562191px;}
.ws28d{word-spacing:-0.558901px;}
.wsaa{word-spacing:-0.471332px;}
.wsc{word-spacing:-0.454296px;}
.ws2d7{word-spacing:-0.431878px;}
.ws1cc{word-spacing:-0.420224px;}
.ws296{word-spacing:-0.394889px;}
.ws92{word-spacing:-0.386152px;}
.ws19{word-spacing:-0.382565px;}
.ws14a{word-spacing:-0.334744px;}
.ws1a3{word-spacing:-0.329365px;}
.ws149{word-spacing:-0.325180px;}
.ws37{word-spacing:-0.325179px;}
.wsc5{word-spacing:-0.323686px;}
.ws43{word-spacing:-0.307548px;}
.ws13a{word-spacing:-0.304855px;}
.ws2f6{word-spacing:-0.299774px;}
.ws24e{word-spacing:-0.295292px;}
.ws16f{word-spacing:-0.277359px;}
.ws168{word-spacing:-0.272577px;}
.ws60{word-spacing:-0.267978px;}
.ws147{word-spacing:-0.266899px;}
.ws172{word-spacing:-0.263013px;}
.ws1a4{word-spacing:-0.255542px;}
.wsd4{word-spacing:-0.244184px;}
.ws178{word-spacing:-0.239103px;}
.wsa6{word-spacing:-0.232827px;}
.ws161{word-spacing:-0.227148px;}
.ws16b{word-spacing:-0.224757px;}
.ws57{word-spacing:-0.221469px;}
.ws1d{word-spacing:-0.219975px;}
.ws3b{word-spacing:-0.218480px;}
.ws78{word-spacing:-0.205629px;}
.ws1ed{word-spacing:-0.204433px;}
.ws291{word-spacing:-0.203011px;}
.ws16{word-spacing:-0.200847px;}
.ws29{word-spacing:-0.196064px;}
.ws91{word-spacing:-0.193076px;}
.ws84{word-spacing:-0.187397px;}
.ws193{word-spacing:-0.176040px;}
.ws16e{word-spacing:-0.172154px;}
.ws185{word-spacing:-0.170361px;}
.ws2f7{word-spacing:-0.167670px;}
.ws23{word-spacing:-0.167372px;}
.ws6d{word-spacing:-0.162590px;}
.ws266{word-spacing:-0.159004px;}
.ws73{word-spacing:-0.157808px;}
.ws2b{word-spacing:-0.148244px;}
.wsba{word-spacing:-0.147646px;}
.ws10{word-spacing:-0.143462px;}
.ws1b8{word-spacing:-0.141968px;}
.ws6c{word-spacing:-0.138680px;}
.ws131{word-spacing:-0.136289px;}
.ws42{word-spacing:-0.134944px;}
.ws90{word-spacing:-0.130610px;}
.ws170{word-spacing:-0.129116px;}
.ws186{word-spacing:-0.124931px;}
.wsef{word-spacing:-0.119551px;}
.ws6b{word-spacing:-0.114769px;}
.wsea{word-spacing:-0.113574px;}
.wsa{word-spacing:-0.109987px;}
.wsc4{word-spacing:-0.107895px;}
.ws44{word-spacing:-0.106700px;}
.ws13f{word-spacing:-0.100423px;}
.wsfa{word-spacing:-0.096538px;}
.ws14e{word-spacing:-0.095641px;}
.ws3e{word-spacing:-0.093250px;}
.ws1c9{word-spacing:-0.091102px;}
.ws163{word-spacing:-0.090859px;}
.ws2f0{word-spacing:-0.086376px;}
.ws177{word-spacing:-0.086077px;}
.ws85{word-spacing:-0.085181px;}
.ws32{word-spacing:-0.083686px;}
.ws1c6{word-spacing:-0.081828px;}
.ws179{word-spacing:-0.081295px;}
.ws7a{word-spacing:-0.076513px;}
.ws6e{word-spacing:-0.071731px;}
.ws83{word-spacing:-0.068144px;}
.ws70{word-spacing:-0.066949px;}
.ws162{word-spacing:-0.062466px;}
.ws157{word-spacing:-0.062167px;}
.ws45{word-spacing:-0.059627px;}
.ws16c{word-spacing:-0.057385px;}
.ws215{word-spacing:-0.055651px;}
.ws76{word-spacing:-0.052603px;}
.ws15a{word-spacing:-0.047940px;}
.ws175{word-spacing:-0.047821px;}
.ws19c{word-spacing:-0.047470px;}
.ws135{word-spacing:-0.045430px;}
.ws171{word-spacing:-0.043039px;}
.ws1c5{word-spacing:-0.040914px;}
.ws14d{word-spacing:-0.038256px;}
.ws3f{word-spacing:-0.034969px;}
.ws18c{word-spacing:-0.034072px;}
.ws75{word-spacing:-0.033474px;}
.ws2b2{word-spacing:-0.030486px;}
.ws17c{word-spacing:-0.028692px;}
.ws22c{word-spacing:-0.017036px;}
.ws173{word-spacing:-0.014346px;}
.ws30{word-spacing:-0.011955px;}
.ws154{word-spacing:-0.009564px;}
.ws1c3{word-spacing:-0.004782px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.004782px;}
.ws148{word-spacing:0.005679px;}
.ws209{word-spacing:0.011357px;}
.wseb{word-spacing:0.014346px;}
.wscb{word-spacing:0.017036px;}
.ws1ab{word-spacing:0.019128px;}
.ws17d{word-spacing:0.023910px;}
.ws6a{word-spacing:0.028692px;}
.ws14b{word-spacing:0.038256px;}
.ws40{word-spacing:0.038854px;}
.ws1c7{word-spacing:0.040914px;}
.ws19b{word-spacing:0.062167px;}
.ws198{word-spacing:0.068144px;}
.ws174{word-spacing:0.071731px;}
.ws1c2{word-spacing:0.081295px;}
.ws1c8{word-spacing:0.081828px;}
.ws13e{word-spacing:0.090859px;}
.ws1ca{word-spacing:0.091102px;}
.ws2e6{word-spacing:0.096537px;}
.ws22b{word-spacing:0.107895px;}
.ws120{word-spacing:0.114769px;}
.ws68{word-spacing:0.119552px;}
.ws31{word-spacing:0.125529px;}
.ws1c4{word-spacing:0.133898px;}
.ws16d{word-spacing:0.153026px;}
.ws2c0{word-spacing:0.157509px;}
.ws140{word-spacing:0.157808px;}
.ws2d{word-spacing:0.200847px;}
.ws3c{word-spacing:0.218480px;}
.ws28{word-spacing:0.224757px;}
.ws18f{word-spacing:0.244184px;}
.ws252{word-spacing:0.261220px;}
.ws87{word-spacing:0.289614px;}
.ws2dd{word-spacing:0.309936px;}
.ws9b{word-spacing:0.340722px;}
.ws12c{word-spacing:0.369116px;}
.ws189{word-spacing:0.408866px;}
.ws2eb{word-spacing:0.442040px;}
.ws271{word-spacing:0.589387px;}
.ws27f{word-spacing:0.624953px;}
.wsc3{word-spacing:0.653050px;}
.ws284{word-spacing:0.675762px;}
.ws286{word-spacing:0.696086px;}
.ws2bb{word-spacing:0.701167px;}
.ws2ba{word-spacing:0.726572px;}
.ws96{word-spacing:0.777982px;}
.ws18b{word-spacing:0.795018px;}
.ws5b{word-spacing:0.838744px;}
.ws141{word-spacing:0.874520px;}
.ws5a{word-spacing:0.887865px;}
.wsdb{word-spacing:0.931307px;}
.ws2da{word-spacing:0.934889px;}
.ws2bc{word-spacing:0.950132px;}
.ws25a{word-spacing:0.993772px;}
.ws276{word-spacing:1.031427px;}
.ws1d9{word-spacing:1.033523px;}
.ws27{word-spacing:1.056835px;}
.ws8{word-spacing:1.075963px;}
.ws2d3{word-spacing:1.087317px;}
.ws18{word-spacing:1.138130px;}
.ws279{word-spacing:1.219421px;}
.wsa4{word-spacing:1.226599px;}
.wsa5{word-spacing:1.243635px;}
.ws1d2{word-spacing:1.249314px;}
.ws267{word-spacing:1.249906px;}
.wsde{word-spacing:1.294744px;}
.ws294{word-spacing:1.371848px;}
.ws2ee{word-spacing:1.376929px;}
.wsfc{word-spacing:1.379924px;}
.ws61{word-spacing:1.391736px;}
.wsa2{word-spacing:1.465105px;}
.ws160{word-spacing:1.470783px;}
.ws292{word-spacing:1.514114px;}
.wsd{word-spacing:1.535041px;}
.ws219{word-spacing:1.554828px;}
.ws20e{word-spacing:1.607072px;}
.ws213{word-spacing:1.617294px;}
.ws20f{word-spacing:1.675217px;}
.wsd6{word-spacing:1.714967px;}
.ws20d{word-spacing:1.776297px;}
.ws217{word-spacing:1.802419px;}
.wsd5{word-spacing:1.805827px;}
.ws2cd{word-spacing:1.844374px;}
.ws283{word-spacing:1.869779px;}
.ws210{word-spacing:1.873971px;}
.ws212{word-spacing:1.908043px;}
.ws282{word-spacing:1.991721px;}
.ws1da{word-spacing:2.032975px;}
.wse5{word-spacing:2.055689px;}
.ws26{word-spacing:2.094542px;}
.ws299{word-spacing:2.108582px;}
.ws2b0{word-spacing:2.118744px;}
.ws1ce{word-spacing:2.146549px;}
.ws265{word-spacing:2.157906px;}
.ws7d{word-spacing:2.180621px;}
.ws101{word-spacing:2.197657px;}
.ws229{word-spacing:2.209014px;}
.ws1e2{word-spacing:2.316910px;}
.wsda{word-spacing:2.373697px;}
.ws124{word-spacing:2.396411px;}
.ws2ad{word-spacing:2.408356px;}
.ws1f2{word-spacing:2.419126px;}
.ws2be{word-spacing:2.449003px;}
.ws1ef{word-spacing:2.492949px;}
.ws2ab{word-spacing:2.499813px;}
.ws19e{word-spacing:2.521343px;}
.ws251{word-spacing:2.612202px;}
.ws143{word-spacing:2.623559px;}
.ws239{word-spacing:2.640595px;}
.ws23e{word-spacing:2.691704px;}
.wsf0{word-spacing:2.737133px;}
.ws245{word-spacing:2.793920px;}
.ws233{word-spacing:2.805278px;}
.ws23d{word-spacing:2.816635px;}
.ws244{word-spacing:2.833671px;}
.ws23a{word-spacing:2.873422px;}
.ws2c4{word-spacing:2.880882px;}
.ws1bb{word-spacing:2.918852px;}
.ws23c{word-spacing:2.930209px;}
.ws238{word-spacing:2.981317px;}
.ws4b{word-spacing:3.002613px;}
.ws2c3{word-spacing:3.048552px;}
.ws15d{word-spacing:3.123285px;}
.ws26e{word-spacing:3.211141px;}
.ws2cc{word-spacing:3.261951px;}
.ws2a2{word-spacing:3.307679px;}
.ws2a8{word-spacing:3.312760px;}
.ws27c{word-spacing:3.322922px;}
.ws2c2{word-spacing:3.338164px;}
.ws289{word-spacing:3.343245px;}
.ws2e2{word-spacing:3.348326px;}
.ws2c6{word-spacing:3.363569px;}
.ws278{word-spacing:3.373731px;}
.ws2bd{word-spacing:3.383893px;}
.ws26c{word-spacing:3.394055px;}
.ws281{word-spacing:3.399135px;}
.ws26a{word-spacing:3.414378px;}
.ws28b{word-spacing:3.419459px;}
.ws17e{word-spacing:3.446971px;}
.ws2d2{word-spacing:3.500754px;}
.ws287{word-spacing:3.531239px;}
.ws2d4{word-spacing:3.556644px;}
.ws2a6{word-spacing:3.576968px;}
.ws88{word-spacing:3.645725px;}
.ws2f{word-spacing:3.695414px;}
.ws25f{word-spacing:3.708191px;}
.ws2e4{word-spacing:3.754800px;}
.ws20b{word-spacing:3.780878px;}
.wsd2{word-spacing:3.838801px;}
.ws1fa{word-spacing:3.844480px;}
.ws22e{word-spacing:3.855837px;}
.ws1f9{word-spacing:3.861516px;}
.ws4e{word-spacing:3.909785px;}
.ws297{word-spacing:3.913731px;}
.wse6{word-spacing:3.975090px;}
.ws1f7{word-spacing:4.026198px;}
.wse7{word-spacing:4.088664px;}
.ws104{word-spacing:4.094343px;}
.ws20c{word-spacing:4.204509px;}
.wse8{word-spacing:4.276061px;}
.ws1aa{word-spacing:4.366920px;}
.ws1d6{word-spacing:4.395314px;}
.ws1d4{word-spacing:4.418029px;}
.ws138{word-spacing:4.430562px;}
.ws21d{word-spacing:4.438472px;}
.wse1{word-spacing:4.525924px;}
.ws1e7{word-spacing:4.537281px;}
.ws134{word-spacing:4.639498px;}
.ws5e{word-spacing:4.647164px;}
.ws1d7{word-spacing:4.673570px;}
.ws1e6{word-spacing:4.775787px;}
.ws2d5{word-spacing:4.831955px;}
.ws256{word-spacing:4.878003px;}
.ws1a1{word-spacing:5.042686px;}
.ws13c{word-spacing:5.082437px;}
.ws5f{word-spacing:5.091182px;}
.ws2b9{word-spacing:5.096163px;}
.ws9f{word-spacing:5.337978px;}
.ws194{word-spacing:5.377729px;}
.ws196{word-spacing:5.434516px;}
.ws195{word-spacing:5.451552px;}
.wse2{word-spacing:5.457231px;}
.ws26f{word-spacing:5.512798px;}
.ws1a2{word-spacing:5.536733px;}
.ws121{word-spacing:5.780917px;}
.ws1fd{word-spacing:5.792274px;}
.ws2a3{word-spacing:5.853220px;}
.ws15{word-spacing:5.853241px;}
.ws1e3{word-spacing:5.871776px;}
.ws29f{word-spacing:5.878624px;}
.ws82{word-spacing:5.991028px;}
.wsad{word-spacing:6.036458px;}
.ws248{word-spacing:6.132996px;}
.ws24a{word-spacing:6.178426px;}
.ws21e{word-spacing:6.206819px;}
.ws218{word-spacing:6.213634px;}
.ws237{word-spacing:6.320393px;}
.ws2df{word-spacing:6.325745px;}
.wse9{word-spacing:6.348787px;}
.ws2a1{word-spacing:6.518820px;}
.ws243{word-spacing:6.564577px;}
.ws2b6{word-spacing:6.584872px;}
.ws242{word-spacing:6.632722px;}
.ws81{word-spacing:6.700866px;}
.wsae{word-spacing:6.706545px;}
.ws191{word-spacing:6.712223px;}
.ws2ef{word-spacing:6.813514px;}
.ws125{word-spacing:6.871227px;}
.ws1d3{word-spacing:6.905299px;}
.ws206{word-spacing:6.945050px;}
.ws204{word-spacing:6.956407px;}
.wsfb{word-spacing:7.052945px;}
.ws199{word-spacing:7.073060px;}
.wsd0{word-spacing:7.138126px;}
.ws158{word-spacing:7.143060px;}
.ws126{word-spacing:7.149483px;}
.ws205{word-spacing:7.155162px;}
.ws1cd{word-spacing:7.160841px;}
.wscd{word-spacing:7.166519px;}
.ws64{word-spacing:7.421891px;}
.ws102{word-spacing:7.473169px;}
.wse4{word-spacing:7.495884px;}
.ws93{word-spacing:7.546992px;}
.ws184{word-spacing:7.586743px;}
.wsaf{word-spacing:7.598101px;}
.ws223{word-spacing:7.609458px;}
.ws224{word-spacing:7.632173px;}
.ws226{word-spacing:7.751425px;}
.ws1ec{word-spacing:7.842285px;}
.ws38{word-spacing:7.875426px;}
.ws27d{word-spacing:7.895750px;}
.ws1d8{word-spacing:7.933144px;}
.ws1eb{word-spacing:8.035361px;}
.ws1e8{word-spacing:8.058075px;}
.wsc8{word-spacing:8.069433px;}
.ws1e9{word-spacing:8.097826px;}
.ws295{word-spacing:8.157315px;}
.ws274{word-spacing:8.322547px;}
.ws22f{word-spacing:8.387440px;}
.wsbe{word-spacing:8.574837px;}
.wsbb{word-spacing:8.688411px;}
.ws27a{word-spacing:8.861124px;}
.ws2ca{word-spacing:8.871286px;}
.ws2c8{word-spacing:8.891610px;}
.wse{word-spacing:8.894632px;}
.wsbd{word-spacing:8.955310px;}
.ws29d{word-spacing:9.475916px;}
.ws2d6{word-spacing:9.597858px;}
.ws1b9{word-spacing:9.716256px;}
.ws2d8{word-spacing:9.892551px;}
.ws7f{word-spacing:9.966119px;}
.ws2a7{word-spacing:10.039898px;}
.ws2c1{word-spacing:10.182164px;}
.ws13d{word-spacing:10.198945px;}
.ws207{word-spacing:10.233017px;}
.ws2bf{word-spacing:10.268539px;}
.ws25d{word-spacing:10.306840px;}
.wsb0{word-spacing:10.460165px;}
.ws270{word-spacing:10.507343px;}
.ws27e{word-spacing:10.547990px;}
.wsdd{word-spacing:10.556703px;}
.ws272{word-spacing:10.573395px;}
.ws2ae{word-spacing:10.644527px;}
.ws277{word-spacing:10.781712px;}
.ws2d9{word-spacing:10.796955px;}
.ws275{word-spacing:10.873169px;}
.ws280{word-spacing:10.934140px;}
.ws47{word-spacing:10.991124px;}
.ws20a{word-spacing:11.138202px;}
.wsca{word-spacing:11.340364px;}
.wsdf{word-spacing:11.681086px;}
.ws21c{word-spacing:11.819646px;}
.ws1a9{word-spacing:11.823053px;}
.ws7e{word-spacing:11.879840px;}
.ws228{word-spacing:11.919591px;}
.ws2af{word-spacing:12.006214px;}
.ws2b1{word-spacing:12.087509px;}
.ws1e1{word-spacing:12.283028px;}
.ws21f{word-spacing:12.506769px;}
.wsb1{word-spacing:12.538570px;}
.ws1df{word-spacing:12.640786px;}
.wsce{word-spacing:12.839541px;}
.ws2f3{word-spacing:12.859809px;}
.ws2db{word-spacing:12.996993px;}
.ws2cb{word-spacing:13.047803px;}
.ws261{word-spacing:13.117797px;}
.ws23f{word-spacing:13.282479px;}
.ws1a{word-spacing:13.341947px;}
.ws5c{word-spacing:13.445004px;}
.ws260{word-spacing:13.526663px;}
.ws2e7{word-spacing:13.667675px;}
.ws103{word-spacing:13.935530px;}
.ws298{word-spacing:14.010332px;}
.ws28c{word-spacing:14.109715px;}
.ws139{word-spacing:14.922662px;}
.ws2e1{word-spacing:15.136061px;}
.ws187{word-spacing:15.213237px;}
.ws240{word-spacing:15.519887px;}
.wsdc{word-spacing:15.917396px;}
.ws2a0{word-spacing:16.004898px;}
.ws29e{word-spacing:16.030303px;}
.ws259{word-spacing:16.275154px;}
.ws2e0{word-spacing:16.345320px;}
.ws2de{word-spacing:16.396129px;}
.ws19d{word-spacing:16.439837px;}
.ws2ed{word-spacing:16.676900px;}
.ws2f2{word-spacing:16.732079px;}
.ws263{word-spacing:17.626685px;}
.ws2c7{word-spacing:17.849272px;}
.ws48{word-spacing:17.865417px;}
.ws26b{word-spacing:17.889919px;}
.ws49{word-spacing:17.977912px;}
.ws5d{word-spacing:18.046795px;}
.ws4a{word-spacing:18.106251px;}
.ws21b{word-spacing:18.109772px;}
.ws25b{word-spacing:18.438739px;}
.ws19f{word-spacing:18.612734px;}
.ws264{word-spacing:18.660606px;}
.ws8f{word-spacing:18.663502px;}
.ws241{word-spacing:18.752998px;}
.ws24c{word-spacing:18.790534px;}
.ws8c{word-spacing:18.797406px;}
.ws1f1{word-spacing:18.797576px;}
.ws1a8{word-spacing:18.819212px;}
.ws1a6{word-spacing:18.836248px;}
.ws8e{word-spacing:18.855555px;}
.wsc9{word-spacing:18.954478px;}
.ws1a7{word-spacing:19.032163px;}
.ws8d{word-spacing:19.045906px;}
.ws288{word-spacing:20.340955px;}
.ws108{word-spacing:122.358569px;}
.ws1bc{word-spacing:129.124584px;}
.ws10d{word-spacing:130.182019px;}
.ws107{word-spacing:148.355273px;}
.ws110{word-spacing:155.670399px;}
.ws106{word-spacing:208.609468px;}
.ws105{word-spacing:208.891973px;}
.ws16a{word-spacing:233.015438px;}
.ws1b7{word-spacing:240.704990px;}
.ws1b5{word-spacing:263.137634px;}
.ws71{word-spacing:276.407850px;}
.ws1ac{word-spacing:285.565495px;}
.ws10a{word-spacing:336.996550px;}
.ws116{word-spacing:362.484930px;}
.ws14c{word-spacing:449.537550px;}
.ws167{word-spacing:449.738397px;}
.ws114{word-spacing:569.638987px;}
.ws67{word-spacing:624.933947px;}
.ws17b{word-spacing:703.857065px;}
.ws1bf{word-spacing:711.121014px;}
.ws176{word-spacing:726.237106px;}
.ws1c1{word-spacing:733.548876px;}
.ws1c0{word-spacing:733.572786px;}
.ws169{word-spacing:743.691625px;}
.ws119{word-spacing:771.351060px;}
.ws28f{word-spacing:1032.761650px;}
.ws153{word-spacing:1062.401578px;}
.ws151{word-spacing:1146.996219px;}
.ws155{word-spacing:1171.910752px;}
.ws152{word-spacing:1196.825284px;}
.ws150{word-spacing:1221.787638px;}
.ws14f{word-spacing:1231.667374px;}
.ws156{word-spacing:1239.194336px;}
.ws115{word-spacing:1345.925133px;}
.ws1b4{word-spacing:1514.315812px;}
.ws1b6{word-spacing:1517.213740px;}
.wsed{word-spacing:1717.285567px;}
.wsec{word-spacing:1762.141289px;}
.wsee{word-spacing:1776.583111px;}
._4b{margin-left:-3.180503px;}
._4a{margin-left:-1.234225px;}
._7f{width:1.555964px;}
._3d{width:8.478299px;}
._3{width:10.027980px;}
._5{width:11.175674px;}
._1{width:12.328151px;}
._2{width:13.404114px;}
._0{width:14.854058px;}
._b{width:16.230292px;}
._6{width:18.218689px;}
._9{width:19.771814px;}
._a{width:20.798239px;}
._13{width:22.618262px;}
._4{width:24.670648px;}
._15{width:26.326453px;}
._7{width:27.618357px;}
._16{width:28.739901px;}
._84{width:29.772621px;}
._49{width:31.034095px;}
._14{width:32.618453px;}
._80{width:33.646298px;}
._8{width:35.479609px;}
._81{width:36.509205px;}
._e{width:46.099058px;}
._d{width:48.585730px;}
._f{width:51.072401px;}
._3f{width:111.058561px;}
._2a{width:117.064829px;}
._2b{width:122.511595px;}
._48{width:133.094294px;}
._4d{width:146.082369px;}
._6b{width:149.458842px;}
._41{width:160.825460px;}
._1b{width:163.426900px;}
._19{width:169.571848px;}
._1a{width:175.563769px;}
._45{width:188.360561px;}
._25{width:256.590993px;}
._11{width:263.797558px;}
._24{width:267.981860px;}
._40{width:286.196727px;}
._59{width:298.257082px;}
._47{width:310.460899px;}
._10{width:319.154684px;}
._2d{width:321.607881px;}
._42{width:330.426000px;}
._64{width:340.052287px;}
._c{width:408.234898px;}
._82{width:428.808427px;}
._83{width:432.106120px;}
._58{width:438.672710px;}
._2f{width:461.994817px;}
._6d{width:477.904730px;}
._39{width:506.888796px;}
._3b{width:514.578348px;}
._1c{width:555.508000px;}
._12{width:560.285278px;}
._5b{width:573.684610px;}
._3e{width:591.717758px;}
._2e{width:597.398845px;}
._7a{width:628.898275px;}
._32{width:643.760917px;}
._6a{width:657.313275px;}
._5a{width:668.618065px;}
._5c{width:675.049936px;}
._36{width:683.992388px;}
._68{width:691.571953px;}
._78{width:701.279535px;}
._76{width:708.863882px;}
._43{width:716.290421px;}
._44{width:726.237106px;}
._46{width:738.670462px;}
._6f{width:746.752143px;}
._28{width:750.515625px;}
._7e{width:756.153673px;}
._66{width:767.444117px;}
._57{width:779.069305px;}
._50{width:790.460172px;}
._4f{width:795.863900px;}
._77{width:800.822896px;}
._71{width:815.953334px;}
._6c{width:817.038861px;}
._74{width:820.811907px;}
._73{width:823.250757px;}
._69{width:828.764472px;}
._3a{width:840.499648px;}
._75{width:850.651961px;}
._23{width:854.907994px;}
._61{width:860.402581px;}
._6e{width:870.593151px;}
._55{width:875.045249px;}
._70{width:880.539836px;}
._1d{width:890.629983px;}
._72{width:893.116654px;}
._63{width:903.316788px;}
._7b{width:905.526100px;}
._29{width:908.811375px;}
._1e{width:916.749594px;}
._79{width:920.493947px;}
._67{width:925.314264px;}
._34{width:942.725744px;}
._7d{width:945.360659px;}
._65{width:947.971664px;}
._21{width:953.719700px;}
._56{width:964.876246px;}
._38{width:982.785061px;}
._2c{width:986.806773px;}
._3c{width:1002.520623px;}
._7c{width:1007.623081px;}
._18{width:1012.687282px;}
._51{width:1026.693936px;}
._35{width:1042.393439px;}
._31{width:1047.280704px;}
._60{width:1053.497382px;}
._37{width:1072.324352px;}
._5d{width:1084.260374px;}
._53{width:1088.722036px;}
._62{width:1094.508329px;}
._30{width:1097.286706px;}
._33{width:1149.463762px;}
._4e{width:1164.049045px;}
._54{width:1168.462887px;}
._5e{width:1175.674233px;}
._26{width:1185.974790px;}
._5f{width:1188.289307px;}
._1f{width:1234.799623px;}
._4c{width:1244.813257px;}
._22{width:1269.584327px;}
._52{width:1289.975031px;}
._27{width:1324.692787px;}
._20{width:1523.860804px;}
._17{width:1564.226172px;}
.fc6{color:rgb(112,109,110);}
.fc5{color:rgb(90,87,88);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.382400px;}
.fse{font-size:38.854200px;}
.fs11{font-size:40.357800px;}
.fs15{font-size:40.914000px;}
.fs4{font-size:42.000000px;}
.fs16{font-size:45.550800px;}
.fs14{font-size:47.470200px;}
.fs9{font-size:47.820600px;}
.fs13{font-size:47.940000px;}
.fs18{font-size:49.854000px;}
.fs1a{font-size:50.506200px;}
.fs19{font-size:50.752800px;}
.fsd{font-size:50.809200px;}
.fs8{font-size:53.797200px;}
.fs10{font-size:54.000000px;}
.fs12{font-size:54.103200px;}
.fs17{font-size:55.166400px;}
.fs1b{font-size:55.245600px;}
.fsa{font-size:56.787000px;}
.fsb{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs7{font-size:62.763600px;}
.fs1{font-size:63.000000px;}
.fsc{font-size:71.730600px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:74.718600px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:128.518200px;}
.y0{bottom:0.000000px;}
.ydf{bottom:4.423050px;}
.y133{bottom:4.431150px;}
.y26e{bottom:4.524900px;}
.y1d5{bottom:24.658500px;}
.ye3{bottom:31.587900px;}
.y146{bottom:36.382575px;}
.y1c1{bottom:40.863614px;}
.y26d{bottom:41.765700px;}
.y26c{bottom:42.345750px;}
.y26a{bottom:48.348600px;}
.y145{bottom:48.787050px;}
.ye0{bottom:56.474100px;}
.y13f{bottom:57.056700px;}
.y18d{bottom:60.042502px;}
.y1ae{bottom:60.185250px;}
.y1c2{bottom:60.635304px;}
.y144{bottom:61.191525px;}
.y5{bottom:66.525004px;}
.y13e{bottom:69.461175px;}
.y18c{bottom:72.325416px;}
.y143{bottom:73.596000px;}
.y1af{bottom:75.660970px;}
.y1c3{bottom:76.049654px;}
.y269{bottom:82.689612px;}
.ye2{bottom:83.584452px;}
.y13d{bottom:83.963025px;}
.y142{bottom:86.000475px;}
.y18b{bottom:86.685151px;}
.y1b0{bottom:91.075320px;}
.y1c4{bottom:91.525374px;}
.y13c{bottom:96.367500px;}
.y4{bottom:97.125005px;}
.y141{bottom:98.404950px;}
.y18a{bottom:98.968066px;}
.y56{bottom:103.322873px;}
.y266{bottom:103.323145px;}
.y64{bottom:103.324838px;}
.y2c2{bottom:103.324973px;}
.y248{bottom:103.331567px;}
.y132{bottom:103.407900px;}
.y1b1{bottom:106.551040px;}
.y1c5{bottom:107.001095px;}
.y13b{bottom:108.771975px;}
.y1ac{bottom:108.852005px;}
.y20f{bottom:110.386328px;}
.ye1{bottom:110.755341px;}
.y140{bottom:110.809425px;}
.y63{bottom:112.338648px;}
.y2a1{bottom:113.274685px;}
.yda{bottom:113.869193px;}
.y91{bottom:113.869271px;}
.yf5{bottom:113.871406px;}
.y16e{bottom:113.871833px;}
.ydd{bottom:114.549441px;}
.y94{bottom:114.549519px;}
.y171{bottom:114.552081px;}
.yfd{bottom:114.552435px;}
.y189{bottom:115.998000px;}
.y268{bottom:116.203200px;}
.y55{bottom:117.524044px;}
.y111{bottom:117.524837px;}
.y265{bottom:117.525587px;}
.y2c1{bottom:117.527415px;}
.y247{bottom:119.064405px;}
.y62{bottom:121.267726px;}
.y1b2{bottom:122.026761px;}
.ybc{bottom:122.040044px;}
.y1c6{bottom:122.476815px;}
.y13a{bottom:123.213900px;}
.y1ab{bottom:124.583423px;}
.y20e{bottom:126.119167px;}
.y19b{bottom:126.370600px;}
.ydc{bottom:127.220704px;}
.y93{bottom:127.220783px;}
.yfc{bottom:127.222503px;}
.y170{bottom:127.223345px;}
.y2a0{bottom:127.475856px;}
.y22a{bottom:129.013488px;}
.y110{bottom:130.280982px;}
.yd9{bottom:130.281223px;}
.y61{bottom:130.281535px;}
.y90{bottom:130.282497px;}
.yf4{bottom:130.283436px;}
.y16d{bottom:130.285059px;}
.y54{bottom:131.726486px;}
.y2c0{bottom:131.728586px;}
.y246{bottom:134.710644px;}
.y139{bottom:135.618375px;}
.y264{bottom:136.999483px;}
.y1b3{bottom:137.441111px;}
.ybb{bottom:137.772883px;}
.y1c7{bottom:137.891165px;}
.y60{bottom:139.210613px;}
.y21{bottom:139.264499px;}
.ydb{bottom:139.975654px;}
.y92{bottom:139.976928px;}
.yfb{bottom:139.978648px;}
.y16f{bottom:139.979490px;}
.y1aa{bottom:140.231081px;}
.y20d{bottom:141.765405px;}
.y19a{bottom:142.018258px;}
.y10f{bottom:142.951050px;}
.yd8{bottom:143.717616px;}
.y8f{bottom:143.717694px;}
.yf3{bottom:143.719829px;}
.y16c{bottom:143.720256px;}
.y229{bottom:144.746326px;}
.y53{bottom:145.927657px;}
.y29f{bottom:146.951023px;}
.y138{bottom:148.022850px;}
.y5f{bottom:148.139690px;}
.y245{bottom:150.443482px;}
.y263{bottom:151.200654px;}
.yfa{bottom:152.648716px;}
.y1b4{bottom:152.916831px;}
.y1c8{bottom:153.366885px;}
.yba{bottom:153.419121px;}
.y1a9{bottom:155.962500px;}
.y5e{bottom:157.153500px;}
.yd7{bottom:157.154009px;}
.y8e{bottom:157.154087px;}
.yf2{bottom:157.156222px;}
.y16b{bottom:157.156649px;}
.y20c{bottom:157.498243px;}
.y199{bottom:157.749676px;}
.y52{bottom:160.128829px;}
.y228{bottom:160.392564px;}
.y137{bottom:160.427325px;}
.y29e{bottom:161.152194px;}
.yf9{bottom:165.404861px;}
.y244{bottom:166.091140px;}
.y1b5{bottom:168.392551px;}
.y1d6{bottom:168.471000px;}
.y1c9{bottom:168.842605px;}
.yb9{bottom:169.151959px;}
.y262{bottom:170.589445px;}
.y8d{bottom:170.675362px;}
.yf1{bottom:170.677497px;}
.y16a{bottom:170.677924px;}
.y136{bottom:172.831800px;}
.y20b{bottom:173.145901px;}
.y198{bottom:173.397334px;}
.y51{bottom:174.330000px;}
.y227{bottom:176.125403px;}
.y29d{bottom:180.540985px;}
.y243{bottom:181.822558px;}
.yd6{bottom:182.239500px;}
.y1b6{bottom:183.806901px;}
.y8c{bottom:184.111755px;}
.yf0{bottom:184.112694px;}
.y169{bottom:184.114317px;}
.y1ca{bottom:184.256955px;}
.y261{bottom:184.790616px;}
.yb8{bottom:184.799617px;}
.y20a{bottom:188.877320px;}
.y226{bottom:191.771641px;}
.y29c{bottom:194.742156px;}
.y18{bottom:196.933500px;}
.y26b{bottom:197.254350px;}
.y242{bottom:197.470216px;}
.y8b{bottom:197.546953px;}
.yef{bottom:197.549087px;}
.y168{bottom:197.550710px;}
.y135{bottom:198.598875px;}
.y260{bottom:198.993058px;}
.y1b7{bottom:199.282622px;}
.y1cb{bottom:199.732676px;}
.yb7{bottom:200.531036px;}
.y209{bottom:204.524978px;}
.y225{bottom:207.504479px;}
.y29b{bottom:208.944598px;}
.y4c{bottom:209.451923px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1eb{bottom:209.710922px;}
.y1f2{bottom:210.391572px;}
.y197{bottom:210.558747px;}
.y8a{bottom:210.983346px;}
.yee{bottom:210.985480px;}
.y167{bottom:210.985908px;}
.y134{bottom:211.003350px;}
.y241{bottom:213.201635px;}
.y1b8{bottom:214.758342px;}
.y1cc{bottom:215.208396px;}
.yb6{bottom:216.178693px;}
.y25f{bottom:218.381849px;}
.y208{bottom:220.256396px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1f1{bottom:223.147718px;}
.y224{bottom:223.150717px;}
.y89{bottom:224.419739px;}
.yed{bottom:224.421874px;}
.y166{bottom:224.422301px;}
.y4b{bottom:225.184762px;}
.y1ea{bottom:226.122952px;}
.y196{bottom:226.206405px;}
.y29a{bottom:228.418494px;}
.y240{bottom:228.849293px;}
.y1b9{bottom:230.234062px;}
.y1cd{bottom:230.622746px;}
.yb5{bottom:231.910112px;}
.y25e{bottom:232.583020px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1f0{bottom:235.818981px;}
.y207{bottom:235.904054px;}
.y88{bottom:237.856132px;}
.yec{bottom:237.857071px;}
.y165{bottom:237.858694px;}
.y223{bottom:238.883556px;}
.y1e9{bottom:239.559345px;}
.y4a{bottom:240.831000px;}
.y195{bottom:241.937824px;}
.y299{bottom:242.619665px;}
.y188{bottom:242.685147px;}
.y23f{bottom:244.580711px;}
.y1ba{bottom:245.648412px;}
.y1ce{bottom:246.098466px;}
.y25d{bottom:246.784192px;}
.yb4{bottom:247.642950px;}
.y87{bottom:251.291329px;}
.yeb{bottom:251.293464px;}
.y164{bottom:251.295087px;}
.y206{bottom:251.635473px;}
.y1e8{bottom:253.080620px;}
.y222{bottom:254.531214px;}
.y187{bottom:254.968061px;}
.y10e{bottom:255.375485px;}
.y194{bottom:257.585482px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y23e{bottom:260.228369px;}
.yd5{bottom:260.313550px;}
.y1bb{bottom:261.124133px;}
.y2bf{bottom:261.412718px;}
.y1cf{bottom:261.574186px;}
.y298{bottom:262.008456px;}
.yb3{bottom:263.289189px;}
.y86{bottom:264.812604px;}
.yea{bottom:264.814739px;}
.y163{bottom:264.815166px;}
.y25c{bottom:266.258088px;}
.y1e7{bottom:266.515817px;}
.y186{bottom:267.250975px;}
.y205{bottom:267.283131px;}
.y221{bottom:270.262632px;}
.y10d{bottom:271.021723px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y193{bottom:273.316900px;}
.y2be{bottom:275.615160px;}
.yd4{bottom:275.959788px;}
.y297{bottom:276.209627px;}
.y1bc{bottom:276.599853px;}
.y1d0{bottom:277.049907px;}
.y85{bottom:278.248997px;}
.ye9{bottom:278.251132px;}
.y162{bottom:278.251559px;}
.yb2{bottom:279.022027px;}
.y185{bottom:279.533890px;}
.y1e6{bottom:279.952211px;}
.y25b{bottom:280.460529px;}
.y204{bottom:283.014549px;}
.y49{bottom:283.441249px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y220{bottom:285.910290px;}
.y10c{bottom:286.754561px;}
.y192{bottom:288.964558px;}
.y2bd{bottom:289.816331px;}
.y23d{bottom:291.607446px;}
.y84{bottom:291.685390px;}
.ye8{bottom:291.686330px;}
.y161{bottom:291.687952px;}
.yd3{bottom:291.692626px;}
.y1bd{bottom:292.014203px;}
.y1d1{bottom:292.464256px;}
.y1e5{bottom:293.388604px;}
.y184{bottom:293.834287px;}
.y25a{bottom:294.661701px;}
.y296{bottom:295.598418px;}
.y203{bottom:298.662207px;}
.y48{bottom:299.088149px;}
.y10b{bottom:302.400800px;}
.y2bc{bottom:304.017503px;}
.ye7{bottom:305.122723px;}
.y160{bottom:305.124345px;}
.y183{bottom:306.117202px;}
.y1e4{bottom:306.824997px;}
.yd2{bottom:307.338865px;}
.y1be{bottom:307.489923px;}
.y1d2{bottom:307.939977px;}
.y295{bottom:309.800860px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y259{bottom:314.050491px;}
.y202{bottom:314.393626px;}
.y47{bottom:315.925782px;}
.y83{bottom:316.686000px;}
.y2bb{bottom:318.218674px;}
.ye6{bottom:318.559116px;}
.y15f{bottom:318.559543px;}
.y1e3{bottom:320.260194px;}
.y182{bottom:320.476937px;}
.yb1{bottom:321.541293px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1bf{bottom:322.965644px;}
.y23c{bottom:322.986522px;}
.yd1{bottom:323.071703px;}
.y1d3{bottom:323.415698px;}
.y294{bottom:324.002031px;}
.y21f{bottom:327.068088px;}
.y258{bottom:328.251663px;}
.y46{bottom:328.597046px;}
.y201{bottom:330.041284px;}
.y191{bottom:331.569005px;}
.ye5{bottom:331.995509px;}
.y15e{bottom:331.995936px;}
.y2ba{bottom:332.421116px;}
.y181{bottom:332.759851px;}
.y1e2{bottom:333.696587px;}
.yb0{bottom:337.272712px;}
.y1c0{bottom:338.379993px;}
.yd0{bottom:338.719361px;}
.y1d4{bottom:338.873250px;}
.y45{bottom:341.351995px;}
.y257{bottom:342.454104px;}
.y293{bottom:343.475927px;}
.y10a{bottom:343.984500px;}
.y180{bottom:345.042766px;}
.y15d{bottom:345.517211px;}
.y200{bottom:345.772702px;}
.y1e1{bottom:347.217862px;}
.y190{bottom:347.300423px;}
.yf{bottom:348.133500px;}
.y21e{bottom:350.964058px;}
.yaf{bottom:352.920370px;}
.y44{bottom:354.023259px;}
.ycf{bottom:354.450779px;}
.ye4{bottom:357.081000px;}
.y292{bottom:357.677099px;}
.y15c{bottom:358.953604px;}
.y1e0{bottom:360.654255px;}
.y1ff{bottom:361.420360px;}
.y256{bottom:361.842895px;}
.y17f{bottom:362.072700px;}
.y18f{bottom:362.948081px;}
.y43{bottom:366.694522px;}
.y109{bottom:367.880044px;}
.yae{bottom:368.651788px;}
.yce{bottom:370.098437px;}
.y291{bottom:371.879540px;}
.y15b{bottom:372.389997px;}
.y1df{bottom:374.089453px;}
.y21d{bottom:374.860027px;}
.y255{bottom:376.044067px;}
.y1fe{bottom:377.153199px;}
.y18e{bottom:378.679500px;}
.y42{bottom:379.449472px;}
.y23b{bottom:381.322388px;}
.y108{bottom:382.082486px;}
.yad{bottom:384.299446px;}
.y15a{bottom:385.825194px;}
.ycd{bottom:385.829856px;}
.ye{bottom:386.785499px;}
.y1de{bottom:387.525846px;}
.y2b9{bottom:389.141966px;}
.y254{bottom:390.245238px;}
.y290{bottom:391.268331px;}
.y118{bottom:392.117770px;}
.y1fd{bottom:392.884617px;}
.y41{bottom:392.885865px;}
.y107{bottom:396.283657px;}
.y23a{bottom:397.055226px;}
.y21c{bottom:398.755997px;}
.y159{bottom:399.261587px;}
.yac{bottom:400.030865px;}
.y1dd{bottom:400.962239px;}
.ycc{bottom:401.562694px;}
.y2b8{bottom:403.343137px;}
.y28f{bottom:405.469502px;}
.y40{bottom:405.557129px;}
.y82{bottom:405.983562px;}
.y117{bottom:407.850609px;}
.yd{bottom:408.044999px;}
.y1fc{bottom:408.532275px;}
.y253{bottom:409.719134px;}
.y106{bottom:410.484829px;}
.y158{bottom:412.697980px;}
.y239{bottom:412.701464px;}
.y1dc{bottom:414.398632px;}
.yde{bottom:414.991500px;}
.yab{bottom:415.678523px;}
.ycb{bottom:417.208932px;}
.y2b7{bottom:417.545579px;}
.y3f{bottom:418.312078px;}
.y28e{bottom:419.670674px;}
.y81{bottom:421.716401px;}
.y21b{bottom:422.651966px;}
.y116{bottom:423.496847px;}
.y252{bottom:423.921576px;}
.y1fb{bottom:424.263694px;}
.y105{bottom:424.686000px;}
.y157{bottom:426.134374px;}
.y1db{bottom:427.919907px;}
.y238{bottom:428.434303px;}
.yf8{bottom:429.109169px;}
.y3e{bottom:430.983342px;}
.yaa{bottom:431.409941px;}
.y2b6{bottom:431.746750px;}
.y1a4{bottom:432.429833px;}
.yca{bottom:432.941771px;}
.y1a8{bottom:433.110081px;}
.y80{bottom:437.362639px;}
.y251{bottom:438.122747px;}
.y21a{bottom:438.383385px;}
.y28d{bottom:439.059465px;}
.y115{bottom:439.229685px;}
.y156{bottom:439.654453px;}
.y1fa{bottom:439.911352px;}
.y1da{bottom:441.355104px;}
.yf7{bottom:441.780432px;}
.y3d{bottom:443.653410px;}
.y237{bottom:444.081961px;}
.y1a7{bottom:445.866226px;}
.y2b5{bottom:445.947922px;}
.ya9{bottom:447.057599px;}
.yc9{bottom:448.588009px;}
.y1a3{bottom:448.843059px;}
.y155{bottom:453.090846px;}
.y7f{bottom:453.095477px;}
.y28c{bottom:453.261906px;}
.yf6{bottom:454.450500px;}
.y1d9{bottom:454.791497px;}
.y114{bottom:454.875923px;}
.y1f9{bottom:455.642770px;}
.y3c{bottom:457.174684px;}
.y250{bottom:457.511538px;}
.y1a6{bottom:458.537490px;}
.y1a2{bottom:462.278256px;}
.y219{bottom:462.279355px;}
.ya8{bottom:462.790438px;}
.yc8{bottom:464.320847px;}
.y154{bottom:466.527239px;}
.y28b{bottom:467.463078px;}
.y236{bottom:467.976510px;}
.y1d8{bottom:468.227890px;}
.y7e{bottom:468.743135px;}
.y3b{bottom:469.845948px;}
.y113{bottom:470.608762px;}
.y1a5{bottom:471.207558px;}
.y1f8{bottom:471.290428px;}
.y24f{bottom:471.712709px;}
.y1a1{bottom:475.714649px;}
.y218{bottom:477.927013px;}
.ya7{bottom:478.521856px;}
.y153{bottom:479.963632px;}
.yc7{bottom:479.967085px;}
.y3a{bottom:482.516016px;}
.y235{bottom:483.709349px;}
.y7d{bottom:484.474554px;}
.y112{bottom:486.255000px;}
.y28a{bottom:486.936974px;}
.y1f7{bottom:487.021847px;}
.y2b4{bottom:488.552706px;}
.y1a0{bottom:489.235924px;}
.y24e{bottom:491.101500px;}
.y1d7{bottom:493.228500px;}
.y152{bottom:493.398830px;}
.y217{bottom:493.658431px;}
.ya6{bottom:494.169514px;}
.y39{bottom:495.272161px;}
.yc6{bottom:495.699924px;}
.y7c{bottom:500.122211px;}
.y289{bottom:501.138145px;}
.y1f6{bottom:502.669505px;}
.y19f{bottom:502.672317px;}
.y2b3{bottom:502.753878px;}
.yc{bottom:502.864502px;}
.y151{bottom:506.835223px;}
.y234{bottom:507.605318px;}
.y38{bottom:507.943424px;}
.y216{bottom:509.306089px;}
.ya5{bottom:509.900933px;}
.yc5{bottom:511.346162px;}
.y104{bottom:511.431343px;}
.y17e{bottom:515.258786px;}
.y288{bottom:515.340587px;}
.y7b{bottom:515.853630px;}
.y19e{bottom:516.108710px;}
.y2b2{bottom:516.956319px;}
.y1f5{bottom:518.400923px;}
.y150{bottom:520.356497px;}
.y37{bottom:520.613492px;}
.yb{bottom:520.864502px;}
.y233{bottom:523.251557px;}
.y215{bottom:525.037508px;}
.ya4{bottom:525.548591px;}
.yc4{bottom:527.079000px;}
.y19d{bottom:529.543908px;}
.y17d{bottom:530.990205px;}
.y2b1{bottom:531.157491px;}
.y7a{bottom:531.501288px;}
.y14f{bottom:533.792890px;}
.y1f4{bottom:534.048581px;}
.y36{bottom:534.134767px;}
.y287{bottom:534.729377px;}
.ya{bottom:538.864499px;}
.y131{bottom:540.003468px;}
.y149{bottom:540.681287px;}
.y214{bottom:540.685166px;}
.y24d{bottom:541.105847px;}
.ya3{bottom:541.280009px;}
.yc3{bottom:542.726658px;}
.y103{bottom:542.810419px;}
.y19c{bottom:542.980301px;}
.y2b0{bottom:545.358662px;}
.y17c{bottom:546.637863px;}
.y35{bottom:546.806030px;}
.y79{bottom:547.232707px;}
.y1ad{bottom:547.398000px;}
.y286{bottom:548.930549px;}
.y1f3{bottom:549.780000px;}
.y148{bottom:553.437432px;}
.y213{bottom:556.416584px;}
.y130{bottom:556.416694px;}
.y24c{bottom:556.753505px;}
.y9{bottom:556.864499px;}
.ya2{bottom:556.927667px;}
.yc2{bottom:558.458077px;}
.y14e{bottom:558.793500px;}
.y34{bottom:559.476098px;}
.y2af{bottom:559.559834px;}
.y1ef{bottom:561.516719px;}
.y17b{bottom:562.369282px;}
.y78{bottom:562.880365px;}
.y285{bottom:563.131720px;}
.y147{bottom:566.107500px;}
.y12f{bottom:569.937968px;}
.y33{bottom:572.232243px;}
.y24b{bottom:572.484923px;}
.ya1{bottom:572.659086px;}
.y2ae{bottom:573.762275px;}
.yc1{bottom:574.105735px;}
.y102{bottom:574.190915px;}
.y1ee{bottom:574.271669px;}
.y17a{bottom:578.016939px;}
.y77{bottom:578.611783px;}
.y284{bottom:582.520511px;}
.y12e{bottom:583.373166px;}
.y32{bottom:584.903507px;}
.y1ed{bottom:586.942932px;}
.y24a{bottom:588.132581px;}
.ya0{bottom:588.306744px;}
.yc0{bottom:589.837153px;}
.y179{bottom:593.749778px;}
.y76{bottom:594.259441px;}
.y283{bottom:596.722953px;}
.y12d{bottom:596.809559px;}
.y31{bottom:598.338704px;}
.y1ec{bottom:599.613000px;}
.y249{bottom:603.864000px;}
.y9f{bottom:604.038162px;}
.ybf{bottom:605.484811px;}
.y101{bottom:605.569992px;}
.y211{bottom:608.116932px;}
.y178{bottom:609.396016px;}
.y75{bottom:609.990860px;}
.y12c{bottom:610.245952px;}
.y30{bottom:611.094849px;}
.y282{bottom:616.196849px;}
.y2ad{bottom:616.367060px;}
.y9e{bottom:619.685820px;}
.y210{bottom:620.787000px;}
.ybe{bottom:621.216230px;}
.y12b{bottom:623.682345px;}
.y2f{bottom:623.766113px;}
.y177{bottom:625.128854px;}
.y212{bottom:625.638518px;}
.y9d{bottom:635.417239px;}
.y281{bottom:635.585639px;}
.y2e{bottom:636.436181px;}
.ybd{bottom:636.863888px;}
.y12a{bottom:637.117543px;}
.y176{bottom:640.775092px;}
.y232{bottom:641.369936px;}
.y2ac{bottom:644.599192px;}
.y8{bottom:645.510000px;}
.y267{bottom:647.149500px;}
.y2d{bottom:649.192326px;}
.y280{bottom:649.786811px;}
.y129{bottom:650.553936px;}
.y9c{bottom:651.064897px;}
.y74{bottom:652.595306px;}
.y175{bottom:656.507931px;}
.y231{bottom:657.017594px;}
.y2ab{bottom:658.801633px;}
.y14d{bottom:659.313209px;}
.y2c{bottom:661.862394px;}
.y270{bottom:662.202432px;}
.y27f{bottom:663.987982px;}
.y128{bottom:664.075211px;}
.y7{bottom:666.771000px;}
.y9b{bottom:666.797735px;}
.y73{bottom:668.242964px;}
.y174{bottom:672.154169px;}
.y230{bottom:672.750432px;}
.y26f{bottom:674.872500px;}
.y14c{bottom:674.960866px;}
.y2b{bottom:675.298787px;}
.y127{bottom:677.511604px;}
.y2aa{bottom:678.190424px;}
.y27e{bottom:683.463149px;}
.y72{bottom:683.974383px;}
.y173{bottom:687.887007px;}
.y2a{bottom:688.054932px;}
.y22f{bottom:688.396671px;}
.y9a{bottom:690.692285px;}
.y126{bottom:690.947997px;}
.y2a9{bottom:692.391595px;}
.y27d{bottom:697.664320px;}
.y14b{bottom:698.942017px;}
.y71{bottom:699.622041px;}
.y29{bottom:700.725000px;}
.y172{bottom:703.533245px;}
.y22e{bottom:704.129509px;}
.y125{bottom:704.383194px;}
.y5d{bottom:705.742594px;}
.y99{bottom:706.339943px;}
.y2a8{bottom:711.780386px;}
.y70{bottom:715.353460px;}
.y5c{bottom:716.883065px;}
.y27c{bottom:717.053111px;}
.y28{bottom:717.136500px;}
.y124{bottom:717.819587px;}
.y22d{bottom:719.775747px;}
.y14a{bottom:722.837986px;}
.y2a7{bottom:725.981557px;}
.y6{bottom:726.298500px;}
.y5b{bottom:728.108043px;}
.y98{bottom:730.321093px;}
.y6f{bottom:731.001117px;}
.y100{bottom:731.086298px;}
.y27b{bottom:731.254282px;}
.y123{bottom:731.255980px;}
.y22c{bottom:735.508585px;}
.y5a{bottom:739.333022px;}
.y2a6{bottom:740.183999px;}
.y122{bottom:744.777255px;}
.y27a{bottom:745.455454px;}
.y27{bottom:746.306672px;}
.y6e{bottom:746.733956px;}
.y59{bottom:750.558000px;}
.y22b{bottom:751.154824px;}
.y3{bottom:752.599495px;}
.y97{bottom:754.217063px;}
.y121{bottom:758.212453px;}
.y2a5{bottom:759.657895px;}
.y6d{bottom:762.380194px;}
.yff{bottom:762.465374px;}
.y26{bottom:763.483500px;}
.y279{bottom:764.845515px;}
.y120{bottom:771.648846px;}
.y2a4{bottom:773.859067px;}
.y6c{bottom:778.113032px;}
.y278{bottom:779.046686px;}
.y25{bottom:781.341000px;}
.y50{bottom:783.637500px;}
.y11f{bottom:785.085239px;}
.y277{bottom:793.247857px;}
.y6b{bottom:793.759270px;}
.yfe{bottom:793.844451px;}
.y11e{bottom:798.521632px;}
.y2a3{bottom:807.449029px;}
.y6a{bottom:809.492109px;}
.y24{bottom:811.276350px;}
.y11d{bottom:811.956830px;}
.y276{bottom:812.721753px;}
.y2a2{bottom:821.651470px;}
.y69{bottom:825.138347px;}
.y11c{bottom:825.478104px;}
.y275{bottom:826.924195px;}
.y11b{bottom:838.914497px;}
.y68{bottom:840.871185px;}
.y274{bottom:841.125366px;}
.y23{bottom:842.657281px;}
.y11a{bottom:852.350890px;}
.y273{bottom:855.326538px;}
.y67{bottom:856.517423px;}
.y4f{bottom:857.537868px;}
.y96{bottom:866.042884px;}
.y66{bottom:872.250262px;}
.y4e{bottom:872.504184px;}
.y22{bottom:874.035000px;}
.y272{bottom:874.715329px;}
.y119{bottom:877.351500px;}
.y2{bottom:879.369000px;}
.y95{bottom:883.984500px;}
.y4d{bottom:887.470500px;}
.y65{bottom:887.896500px;}
.y271{bottom:888.916500px;}
.y58{bottom:940.705701px;}
.y57{bottom:956.437500px;}
.y1{bottom:966.726000px;}
.h16{height:23.254358px;}
.h1c{height:28.021871px;}
.h23{height:28.408061px;}
.h15{height:28.790962px;}
.h24{height:31.627557px;}
.h7{height:32.130000px;}
.h21{height:32.983445px;}
.h1f{height:33.309873px;}
.h2f{height:34.229788px;}
.h2e{height:35.239493px;}
.h18{height:35.339423px;}
.he{height:35.435065px;}
.h2d{height:37.388166px;}
.h1b{height:37.494141px;}
.h14{height:37.547999px;}
.h25{height:37.565796px;}
.h1e{height:37.592214px;}
.h13{height:37.649617px;}
.h17{height:38.246916px;}
.h2c{height:38.304014px;}
.h30{height:38.359005px;}
.hd{height:39.756131px;}
.h29{height:40.825192px;}
.h2a{height:40.830273px;}
.hf{height:41.965593px;}
.h10{height:42.079167px;}
.h11{height:44.293720px;}
.h26{height:45.316026px;}
.h28{height:45.651069px;}
.h6{height:45.900000px;}
.hc{height:46.507828px;}
.h3{height:48.195000px;}
.h12{height:53.008913px;}
.h19{height:53.152375px;}
.h31{height:53.751053px;}
.h2{height:55.080000px;}
.hb{height:55.366483px;}
.h27{height:60.279401px;}
.h5{height:78.030000px;}
.ha{height:94.974950px;}
.h4{height:119.055004px;}
.h1a{height:154.347000px;}
.h1d{height:227.991000px;}
.h2b{height:250.015500px;}
.h22{height:349.767000px;}
.h20{height:377.830500px;}
.h8{height:1020.472500px;}
.h9{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:413.971500px;}
.w6{width:432.000000px;}
.w8{width:444.330000px;}
.w5{width:503.943000px;}
.w2{width:637.794021px;}
.w4{width:739.500000px;}
.w3{width:739.842000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5f{left:4.890485px;}
.x2d{left:7.190250px;}
.x3b{left:8.247750px;}
.x52{left:9.463650px;}
.x4f{left:15.324551px;}
.x3c{left:17.160280px;}
.x1d{left:29.765780px;}
.x25{left:32.690250px;}
.x50{left:34.965150px;}
.x2e{left:39.010650px;}
.x21{left:40.222350px;}
.x47{left:44.035950px;}
.x44{left:46.286220px;}
.x4a{left:47.452269px;}
.x45{left:49.150200px;}
.x46{left:51.400470px;}
.x4e{left:54.806561px;}
.x48{left:56.524949px;}
.x4d{left:59.378700px;}
.x4c{left:61.086860px;}
.x4b{left:63.337130px;}
.x49{left:65.658999px;}
.x8{left:72.283350px;}
.x20{left:79.681950px;}
.x61{left:82.828710px;}
.x1e{left:90.395564px;}
.x9{left:94.818750px;}
.x1{left:102.045000px;}
.x3d{left:104.384100px;}
.x2{left:106.297500px;}
.x3e{left:108.884640px;}
.x1f{left:112.590763px;}
.x2c{left:115.653600px;}
.x6{left:123.479632px;}
.x3a{left:124.667700px;}
.x3f{left:126.886800px;}
.x40{left:140.460019px;}
.x41{left:144.960559px;}
.x18{left:148.818750px;}
.x5b{left:156.727202px;}
.x1c{left:158.767826px;}
.x22{left:159.812601px;}
.x2f{left:163.894050px;}
.x19{left:166.760603px;}
.x42{left:172.035399px;}
.x5c{left:177.306198px;}
.x5{left:180.538500px;}
.x5a{left:181.727869px;}
.x7{left:185.213350px;}
.x30{left:186.725850px;}
.x37{left:189.126163px;}
.xe{left:191.848500px;}
.x31{left:195.714600px;}
.x4{left:203.484001px;}
.x59{left:221.100083px;}
.x65{left:234.622786px;}
.x66{left:236.918092px;}
.x64{left:238.024462px;}
.x51{left:241.923300px;}
.xa{left:275.099346px;}
.x38{left:286.155927px;}
.x32{left:320.659350px;}
.x23{left:339.132396px;}
.x1a{left:343.045703px;}
.x33{left:352.477800px;}
.x5d{left:355.972939px;}
.x1b{left:363.285772px;}
.x60{left:367.110300px;}
.x5e{left:391.009693px;}
.x63{left:415.415893px;}
.x43{left:447.110450px;}
.x3{left:454.959000px;}
.x24{left:458.662110px;}
.x39{left:488.887774px;}
.x56{left:520.096415px;}
.x57{left:536.338917px;}
.x62{left:547.140963px;}
.x58{left:568.907681px;}
.x11{left:599.527015px;}
.x17{left:601.058707px;}
.xc{left:606.586985px;}
.x12{left:609.987000px;}
.x35{left:612.964444px;}
.x27{left:614.155177px;}
.xb{left:616.705500px;}
.x15{left:620.190987px;}
.xf{left:627.079500px;}
.x2a{left:630.992810px;}
.x36{left:632.863791px;}
.x53{left:639.072100px;}
.x2b{left:641.538448px;}
.x10{left:648.338576px;}
.x28{left:650.977039px;}
.x13{left:655.737047px;}
.x26{left:659.650500px;}
.x55{left:662.711018px;}
.x29{left:663.901751px;}
.x54{left:672.746171px;}
.x14{left:674.105166px;}
.x34{left:675.806438px;}
.xd{left:677.593500px;}
.x16{left:678.612463px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.116859pt;}
.v3{vertical-align:13.905913pt;}
.v2{vertical-align:15.723689pt;}
.ls1d{letter-spacing:-0.080979pt;}
.ls1b{letter-spacing:-0.072736pt;}
.ls1a{letter-spacing:-0.036368pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.036368pt;}
.ls15{letter-spacing:0.042196pt;}
.ls13{letter-spacing:0.042613pt;}
.ls19{letter-spacing:0.072736pt;}
.ls1c{letter-spacing:0.080979pt;}
.ls14{letter-spacing:0.168783pt;}
.ls16{letter-spacing:0.176873pt;}
.ls2a{letter-spacing:0.180454pt;}
.lse{letter-spacing:0.232801pt;}
.ls28{letter-spacing:0.269095pt;}
.ls27{letter-spacing:0.270609pt;}
.ls26{letter-spacing:0.278181pt;}
.ls17{letter-spacing:0.305388pt;}
.ls2c{letter-spacing:0.474219pt;}
.lsa{letter-spacing:0.503410pt;}
.ls2d{letter-spacing:0.523086pt;}
.lsd{letter-spacing:0.569596pt;}
.ls1e{letter-spacing:0.579025pt;}
.ls1f{letter-spacing:0.604718pt;}
.ls2b{letter-spacing:0.677275pt;}
.lsf{letter-spacing:0.727176pt;}
.ls7{letter-spacing:0.755898pt;}
.ls9{letter-spacing:0.758927pt;}
.ls11{letter-spacing:1.040136pt;}
.ls8{letter-spacing:1.463439pt;}
.ls22{letter-spacing:1.490646pt;}
.lsb{letter-spacing:1.644854pt;}
.ls29{letter-spacing:1.734062pt;}
.ls3{letter-spacing:8.076368pt;}
.ls6{letter-spacing:8.981771pt;}
.ls12{letter-spacing:9.671457pt;}
.ls5{letter-spacing:9.887175pt;}
.ls2{letter-spacing:10.490777pt;}
.lsc{letter-spacing:10.856339pt;}
.ls10{letter-spacing:10.968725pt;}
.ls1{letter-spacing:12.004033pt;}
.ls4{letter-spacing:12.310085pt;}
.ls20{letter-spacing:15.747918pt;}
.ls25{letter-spacing:15.748928pt;}
.ls21{letter-spacing:15.752966pt;}
.ls24{letter-spacing:19.736637pt;}
.ls23{letter-spacing:20.039501pt;}
.ws2{word-spacing:-39.515063pt;}
.ws1{word-spacing:-39.377976pt;}
.ws3{word-spacing:-39.252314pt;}
.ws33{word-spacing:-38.511362pt;}
.ws3d{word-spacing:-27.278895pt;}
.ws192{word-spacing:-23.118619pt;}
.ws2c9{word-spacing:-20.684990pt;}
.ws11{word-spacing:-17.436453pt;}
.ws1a0{word-spacing:-17.424775pt;}
.ws12b{word-spacing:-17.409632pt;}
.wsab{word-spacing:-17.238009pt;}
.ws58{word-spacing:-17.232962pt;}
.ws24{word-spacing:-16.599062pt;}
.ws1e{word-spacing:-15.808428pt;}
.ws2e5{word-spacing:-15.622135pt;}
.ws1ee{word-spacing:-15.133105pt;}
.wsb{word-spacing:-14.818010pt;}
.ws7b{word-spacing:-14.745748pt;}
.ws11e{word-spacing:-14.741497pt;}
.ws2a{word-spacing:-14.737246pt;}
.ws79{word-spacing:-14.711742pt;}
.ws2c{word-spacing:-14.660733pt;}
.ws11d{word-spacing:-14.630978pt;}
.ws1ba{word-spacing:-14.527377pt;}
.ws7{word-spacing:-13.704321pt;}
.ws17{word-spacing:-13.491785pt;}
.ws1d5{word-spacing:-13.467353pt;}
.wsf5{word-spacing:-13.285634pt;}
.ws97{word-spacing:-13.124107pt;}
.wsc1{word-spacing:-12.679906pt;}
.wsb6{word-spacing:-12.296278pt;}
.ws273{word-spacing:-11.742571pt;}
.ws290{word-spacing:-11.223600pt;}
.wsf7{word-spacing:-11.115109pt;}
.ws5{word-spacing:-11.079868pt;}
.ws28e{word-spacing:-11.078667pt;}
.ws6{word-spacing:-11.068710pt;}
.ws6f{word-spacing:-11.051872pt;}
.ws15c{word-spacing:-10.802149pt;}
.ws17f{word-spacing:-10.706242pt;}
.ws159{word-spacing:-10.653333pt;}
.ws19a{word-spacing:-10.548933pt;}
.wsa9{word-spacing:-10.479094pt;}
.ws29b{word-spacing:-10.356044pt;}
.ws35{word-spacing:-10.270233pt;}
.ws1be{word-spacing:-10.122400pt;}
.ws15b{word-spacing:-10.100514pt;}
.ws7c{word-spacing:-10.065180pt;}
.ws13b{word-spacing:-10.019751pt;}
.ws188{word-spacing:-10.014703pt;}
.ws222{word-spacing:-9.974321pt;}
.ws22d{word-spacing:-9.944035pt;}
.ws1a5{word-spacing:-9.853175pt;}
.ws2a5{word-spacing:-9.656006pt;}
.wsc2{word-spacing:-9.555359pt;}
.ws2b4{word-spacing:-9.497933pt;}
.ws36{word-spacing:-9.254049pt;}
.ws1bd{word-spacing:-9.092000pt;}
.wsa3{word-spacing:-8.964774pt;}
.ws2dc{word-spacing:-8.815961pt;}
.ws1b3{word-spacing:-8.709725pt;}
.ws109{word-spacing:-8.688472pt;}
.ws211{word-spacing:-8.663929pt;}
.ws113{word-spacing:-8.650215pt;}
.ws112{word-spacing:-8.611959pt;}
.ws111{word-spacing:-8.594956pt;}
.ws11a{word-spacing:-8.573702pt;}
.ws1b1{word-spacing:-8.552449pt;}
.ws1ad{word-spacing:-8.548198pt;}
.ws1b0{word-spacing:-8.535446pt;}
.ws1ae{word-spacing:-8.531195pt;}
.ws10c{word-spacing:-8.522694pt;}
.ws1b2{word-spacing:-8.518443pt;}
.ws11c{word-spacing:-8.501440pt;}
.ws118{word-spacing:-8.497189pt;}
.ws117{word-spacing:-8.484437pt;}
.ws11b{word-spacing:-8.467434pt;}
.ws10f{word-spacing:-8.463184pt;}
.ws1af{word-spacing:-8.446181pt;}
.ws69{word-spacing:-8.441930pt;}
.ws10b{word-spacing:-8.407924pt;}
.ws10e{word-spacing:-8.284653pt;}
.ws285{word-spacing:-8.251414pt;}
.ws268{word-spacing:-7.637187pt;}
.ws293{word-spacing:-7.528794pt;}
.ws23b{word-spacing:-7.455502pt;}
.ws2ce{word-spacing:-7.172001pt;}
.wsf6{word-spacing:-6.955777pt;}
.ws2ac{word-spacing:-6.806175pt;}
.ws1f8{word-spacing:-6.551958pt;}
.ws1e0{word-spacing:-6.360144pt;}
.ws26d{word-spacing:-6.128719pt;}
.ws2c5{word-spacing:-6.056457pt;}
.ws2a9{word-spacing:-5.970646pt;}
.ws2cf{word-spacing:-5.871285pt;}
.ws269{word-spacing:-5.866769pt;}
.ws2b8{word-spacing:-5.857736pt;}
.ws2e3{word-spacing:-5.794507pt;}
.ws28a{word-spacing:-5.735794pt;}
.ws220{word-spacing:-5.348578pt;}
.ws183{word-spacing:-5.234499pt;}
.ws208{word-spacing:-5.168879pt;}
.wsfd{word-spacing:-5.113354pt;}
.ws15f{word-spacing:-5.098211pt;}
.ws18d{word-spacing:-5.047733pt;}
.ws202{word-spacing:-5.032590pt;}
.ws4{word-spacing:-5.014448pt;}
.ws1fc{word-spacing:-4.911445pt;}
.ws18e{word-spacing:-4.860967pt;}
.ws4d{word-spacing:-4.854658pt;}
.ws182{word-spacing:-4.825633pt;}
.ws55{word-spacing:-4.775156pt;}
.ws18a{word-spacing:-4.689344pt;}
.ws15e{word-spacing:-4.664106pt;}
.ws25c{word-spacing:-4.613628pt;}
.ws9a{word-spacing:-4.578294pt;}
.ws54{word-spacing:-4.522769pt;}
.ws59{word-spacing:-4.518680pt;}
.wsd3{word-spacing:-4.457149pt;}
.ws249{word-spacing:-4.452101pt;}
.ws39{word-spacing:-4.394431pt;}
.ws253{word-spacing:-4.325907pt;}
.wsff{word-spacing:-4.250191pt;}
.ws22a{word-spacing:-4.219905pt;}
.ws129{word-spacing:-4.199714pt;}
.wsc7{word-spacing:-4.073521pt;}
.ws4c{word-spacing:-4.050806pt;}
.ws231{word-spacing:-4.017996pt;}
.wsa0{word-spacing:-4.012948pt;}
.ws247{word-spacing:-4.007900pt;}
.ws230{word-spacing:-3.997805pt;}
.wse3{word-spacing:-3.977614pt;}
.wsb3{word-spacing:-3.927137pt;}
.ws127{word-spacing:-3.861516pt;}
.wsd1{word-spacing:-3.841325pt;}
.ws8b{word-spacing:-3.831230pt;}
.ws201{word-spacing:-3.826182pt;}
.wsb5{word-spacing:-3.760561pt;}
.ws130{word-spacing:-3.735323pt;}
.ws190{word-spacing:-3.705036pt;}
.ws100{word-spacing:-3.629320pt;}
.ws1f6{word-spacing:-3.614177pt;}
.wscc{word-spacing:-3.593986pt;}
.ws246{word-spacing:-3.563700pt;}
.wsf4{word-spacing:-3.548557pt;}
.wsb4{word-spacing:-3.543509pt;}
.ws2ec{word-spacing:-3.522771pt;}
.ws232{word-spacing:-3.427411pt;}
.ws216{word-spacing:-3.424382pt;}
.wsf3{word-spacing:-3.402172pt;}
.ws12e{word-spacing:-3.387029pt;}
.ws22{word-spacing:-3.349567pt;}
.ws53{word-spacing:-3.331504pt;}
.wse0{word-spacing:-3.255788pt;}
.ws144{word-spacing:-3.245693pt;}
.ws89{word-spacing:-3.240645pt;}
.ws235{word-spacing:-3.235597pt;}
.ws1e4{word-spacing:-3.230549pt;}
.ws197{word-spacing:-3.225502pt;}
.ws225{word-spacing:-3.220454pt;}
.ws142{word-spacing:-3.190167pt;}
.ws166{word-spacing:-3.149786pt;}
.ws77{word-spacing:-3.149784pt;}
.wsd9{word-spacing:-3.144738pt;}
.ws12a{word-spacing:-3.129595pt;}
.ws1f0{word-spacing:-3.124547pt;}
.ws12f{word-spacing:-3.099308pt;}
.ws12{word-spacing:-3.073271pt;}
.ws2b7{word-spacing:-3.016937pt;}
.ws254{word-spacing:-3.008449pt;}
.ws24b{word-spacing:-2.993306pt;}
.ws4f{word-spacing:-2.988258pt;}
.ws258{word-spacing:-2.927685pt;}
.ws1ea{word-spacing:-2.922638pt;}
.ws2f5{word-spacing:-2.904028pt;}
.ws24f{word-spacing:-2.892351pt;}
.wsc0{word-spacing:-2.857017pt;}
.ws94{word-spacing:-2.831778pt;}
.ws41{word-spacing:-2.804410pt;}
.ws236{word-spacing:-2.796444pt;}
.ws214{word-spacing:-2.781301pt;}
.ws1f3{word-spacing:-2.771206pt;}
.ws1db{word-spacing:-2.766158pt;}
.ws128{word-spacing:-2.751015pt;}
.ws11f{word-spacing:-2.720461pt;}
.ws257{word-spacing:-2.715681pt;}
.ws1ff{word-spacing:-2.710633pt;}
.ws1f5{word-spacing:-2.705585pt;}
.ws50{word-spacing:-2.701799pt;}
.ws63{word-spacing:-2.691956pt;}
.wsbf{word-spacing:-2.624821pt;}
.ws24d{word-spacing:-2.619774pt;}
.ws1cb{word-spacing:-2.493580pt;}
.ws2ea{word-spacing:-2.470456pt;}
.ws2e8{word-spacing:-2.447874pt;}
.ws1de{word-spacing:-2.427960pt;}
.ws255{word-spacing:-2.417864pt;}
.wsb8{word-spacing:-2.397673pt;}
.wsb9{word-spacing:-2.392626pt;}
.ws1dc{word-spacing:-2.387578pt;}
.ws1cf{word-spacing:-2.352244pt;}
.ws1dd{word-spacing:-2.342148pt;}
.ws1d1{word-spacing:-2.337101pt;}
.ws46{word-spacing:-2.329271pt;}
.ws1f4{word-spacing:-2.327005pt;}
.ws25{word-spacing:-2.265634pt;}
.ws8a{word-spacing:-2.246241pt;}
.ws98{word-spacing:-2.241194pt;}
.wsc6{word-spacing:-2.205859pt;}
.wsf9{word-spacing:-2.200812pt;}
.ws1fb{word-spacing:-2.190716pt;}
.ws262{word-spacing:-2.175573pt;}
.ws181{word-spacing:-2.120048pt;}
.ws227{word-spacing:-2.104905pt;}
.ws1fe{word-spacing:-2.084714pt;}
.ws234{word-spacing:-2.079666pt;}
.ws1d0{word-spacing:-2.059475pt;}
.ws99{word-spacing:-2.019093pt;}
.wsbc{word-spacing:-2.008998pt;}
.wsd8{word-spacing:-1.968616pt;}
.wsb7{word-spacing:-1.928234pt;}
.wsb2{word-spacing:-1.923186pt;}
.ws132{word-spacing:-1.892900pt;}
.ws200{word-spacing:-1.827279pt;}
.ws9d{word-spacing:-1.817184pt;}
.ws14{word-spacing:-1.806556pt;}
.wsf2{word-spacing:-1.802041pt;}
.ws51{word-spacing:-1.775540pt;}
.ws1b{word-spacing:-1.713040pt;}
.ws123{word-spacing:-1.711182pt;}
.ws13{word-spacing:-1.708789pt;}
.ws9e{word-spacing:-1.625370pt;}
.ws80{word-spacing:-1.615275pt;}
.ws137{word-spacing:-1.607829pt;}
.ws9c{word-spacing:-1.600131pt;}
.wscf{word-spacing:-1.590036pt;}
.ws2d1{word-spacing:-1.549116pt;}
.ws86{word-spacing:-1.519368pt;}
.ws2e{word-spacing:-1.490343pt;}
.ws2d0{word-spacing:-1.481370pt;}
.ws2aa{word-spacing:-1.463305pt;}
.ws29a{word-spacing:-1.440723pt;}
.ws20{word-spacing:-1.355980pt;}
.ws1e5{word-spacing:-1.337649pt;}
.ws34{word-spacing:-1.318781pt;}
.ws250{word-spacing:-1.292220pt;}
.wsf8{word-spacing:-1.287172pt;}
.ws165{word-spacing:-1.266981pt;}
.ws29c{word-spacing:-1.232970pt;}
.ws2f4{word-spacing:-1.205872pt;}
.ws203{word-spacing:-1.196313pt;}
.ws9{word-spacing:-1.164697pt;}
.wsa1{word-spacing:-1.145835pt;}
.ws164{word-spacing:-1.120597pt;}
.ws62{word-spacing:-1.111460pt;}
.ws3a{word-spacing:-1.101995pt;}
.ws27b{word-spacing:-1.088446pt;}
.wsf{word-spacing:-1.088184pt;}
.ws1f{word-spacing:-1.054179pt;}
.ws2f1{word-spacing:-1.007151pt;}
.ws136{word-spacing:-1.002635pt;}
.ws72{word-spacing:-0.994668pt;}
.wsac{word-spacing:-0.989356pt;}
.ws2a4{word-spacing:-0.989086pt;}
.wsfe{word-spacing:-0.954022pt;}
.ws122{word-spacing:-0.908592pt;}
.ws145{word-spacing:-0.873258pt;}
.ws133{word-spacing:-0.842971pt;}
.ws52{word-spacing:-0.830352pt;}
.ws21{word-spacing:-0.824640pt;}
.ws56{word-spacing:-0.807637pt;}
.ws12d{word-spacing:-0.782399pt;}
.ws74{word-spacing:-0.760879pt;}
.ws180{word-spacing:-0.752112pt;}
.ws221{word-spacing:-0.730912pt;}
.ws21a{word-spacing:-0.703654pt;}
.wsa7{word-spacing:-0.681444pt;}
.ws2b3{word-spacing:-0.668423pt;}
.wsf1{word-spacing:-0.666301pt;}
.wsa8{word-spacing:-0.636014pt;}
.ws95{word-spacing:-0.595633pt;}
.ws65{word-spacing:-0.592503pt;}
.ws2b5{word-spacing:-0.582612pt;}
.ws146{word-spacing:-0.555251pt;}
.ws66{word-spacing:-0.516787pt;}
.ws25e{word-spacing:-0.514869pt;}
.ws2e9{word-spacing:-0.514867pt;}
.ws17a{word-spacing:-0.514337pt;}
.wsd7{word-spacing:-0.499726pt;}
.ws28d{word-spacing:-0.496801pt;}
.wsaa{word-spacing:-0.418962pt;}
.wsc{word-spacing:-0.403818pt;}
.ws2d7{word-spacing:-0.383892pt;}
.ws1cc{word-spacing:-0.373532pt;}
.ws296{word-spacing:-0.351013pt;}
.ws92{word-spacing:-0.343246pt;}
.ws19{word-spacing:-0.340058pt;}
.ws14a{word-spacing:-0.297550pt;}
.ws1a3{word-spacing:-0.292769pt;}
.ws149{word-spacing:-0.289049pt;}
.ws37{word-spacing:-0.289048pt;}
.wsc5{word-spacing:-0.287721pt;}
.ws43{word-spacing:-0.273376pt;}
.ws13a{word-spacing:-0.270982pt;}
.ws2f6{word-spacing:-0.266466pt;}
.ws24e{word-spacing:-0.262482pt;}
.ws16f{word-spacing:-0.246542pt;}
.ws168{word-spacing:-0.242291pt;}
.ws60{word-spacing:-0.238203pt;}
.ws147{word-spacing:-0.237243pt;}
.ws172{word-spacing:-0.233790pt;}
.ws1a4{word-spacing:-0.227148pt;}
.wsd4{word-spacing:-0.217053pt;}
.ws178{word-spacing:-0.212536pt;}
.wsa6{word-spacing:-0.206957pt;}
.ws161{word-spacing:-0.201909pt;}
.ws16b{word-spacing:-0.199784pt;}
.ws57{word-spacing:-0.196862pt;}
.ws1d{word-spacing:-0.195533pt;}
.ws3b{word-spacing:-0.194204pt;}
.ws78{word-spacing:-0.182781pt;}
.ws1ed{word-spacing:-0.181718pt;}
.ws291{word-spacing:-0.180454pt;}
.ws16{word-spacing:-0.178530pt;}
.ws29{word-spacing:-0.174280pt;}
.ws91{word-spacing:-0.171623pt;}
.ws84{word-spacing:-0.166575pt;}
.ws193{word-spacing:-0.156480pt;}
.ws16e{word-spacing:-0.153026pt;}
.ws185{word-spacing:-0.151432pt;}
.ws2f7{word-spacing:-0.149040pt;}
.ws23{word-spacing:-0.148775pt;}
.ws6d{word-spacing:-0.144524pt;}
.ws266{word-spacing:-0.141337pt;}
.ws73{word-spacing:-0.140274pt;}
.ws2b{word-spacing:-0.131772pt;}
.wsba{word-spacing:-0.131241pt;}
.ws10{word-spacing:-0.127522pt;}
.ws1b8{word-spacing:-0.126193pt;}
.ws6c{word-spacing:-0.123271pt;}
.ws131{word-spacing:-0.121146pt;}
.ws42{word-spacing:-0.119951pt;}
.ws90{word-spacing:-0.116098pt;}
.ws170{word-spacing:-0.114769pt;}
.ws186{word-spacing:-0.111050pt;}
.wsef{word-spacing:-0.106268pt;}
.ws6b{word-spacing:-0.102017pt;}
.wsea{word-spacing:-0.100955pt;}
.wsa{word-spacing:-0.097767pt;}
.wsc4{word-spacing:-0.095907pt;}
.ws44{word-spacing:-0.094845pt;}
.ws13f{word-spacing:-0.089265pt;}
.wsfa{word-spacing:-0.085811pt;}
.ws14e{word-spacing:-0.085014pt;}
.ws3e{word-spacing:-0.082889pt;}
.ws1c9{word-spacing:-0.080979pt;}
.ws163{word-spacing:-0.080764pt;}
.ws2f0{word-spacing:-0.076778pt;}
.ws177{word-spacing:-0.076513pt;}
.ws85{word-spacing:-0.075716pt;}
.ws32{word-spacing:-0.074387pt;}
.ws1c6{word-spacing:-0.072736pt;}
.ws179{word-spacing:-0.072262pt;}
.ws7a{word-spacing:-0.068012pt;}
.ws6e{word-spacing:-0.063761pt;}
.ws83{word-spacing:-0.060573pt;}
.ws70{word-spacing:-0.059510pt;}
.ws162{word-spacing:-0.055525pt;}
.ws157{word-spacing:-0.055259pt;}
.ws45{word-spacing:-0.053001pt;}
.ws16c{word-spacing:-0.051009pt;}
.ws215{word-spacing:-0.049468pt;}
.ws76{word-spacing:-0.046758pt;}
.ws15a{word-spacing:-0.042613pt;}
.ws175{word-spacing:-0.042507pt;}
.ws19c{word-spacing:-0.042196pt;}
.ws135{word-spacing:-0.040382pt;}
.ws171{word-spacing:-0.038256pt;}
.ws1c5{word-spacing:-0.036368pt;}
.ws14d{word-spacing:-0.034006pt;}
.ws3f{word-spacing:-0.031083pt;}
.ws18c{word-spacing:-0.030286pt;}
.ws75{word-spacing:-0.029755pt;}
.ws2b2{word-spacing:-0.027098pt;}
.ws17c{word-spacing:-0.025504pt;}
.ws22c{word-spacing:-0.015143pt;}
.ws173{word-spacing:-0.012752pt;}
.ws30{word-spacing:-0.010627pt;}
.ws154{word-spacing:-0.008501pt;}
.ws1c3{word-spacing:-0.004251pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.004251pt;}
.ws148{word-spacing:0.005048pt;}
.ws209{word-spacing:0.010095pt;}
.wseb{word-spacing:0.012752pt;}
.wscb{word-spacing:0.015143pt;}
.ws1ab{word-spacing:0.017003pt;}
.ws17d{word-spacing:0.021254pt;}
.ws6a{word-spacing:0.025504pt;}
.ws14b{word-spacing:0.034006pt;}
.ws40{word-spacing:0.034537pt;}
.ws1c7{word-spacing:0.036368pt;}
.ws19b{word-spacing:0.055259pt;}
.ws198{word-spacing:0.060573pt;}
.ws174{word-spacing:0.063761pt;}
.ws1c2{word-spacing:0.072262pt;}
.ws1c8{word-spacing:0.072736pt;}
.ws13e{word-spacing:0.080764pt;}
.ws1ca{word-spacing:0.080979pt;}
.ws2e6{word-spacing:0.085811pt;}
.ws22b{word-spacing:0.095907pt;}
.ws120{word-spacing:0.102017pt;}
.ws68{word-spacing:0.106268pt;}
.ws31{word-spacing:0.111581pt;}
.ws1c4{word-spacing:0.119020pt;}
.ws16d{word-spacing:0.136023pt;}
.ws2c0{word-spacing:0.140008pt;}
.ws140{word-spacing:0.140274pt;}
.ws2d{word-spacing:0.178530pt;}
.ws3c{word-spacing:0.194204pt;}
.ws28{word-spacing:0.199784pt;}
.ws18f{word-spacing:0.217053pt;}
.ws252{word-spacing:0.232196pt;}
.ws87{word-spacing:0.257434pt;}
.ws2dd{word-spacing:0.275499pt;}
.ws9b{word-spacing:0.302864pt;}
.ws12c{word-spacing:0.328103pt;}
.ws189{word-spacing:0.363437pt;}
.ws2eb{word-spacing:0.392924pt;}
.ws271{word-spacing:0.523899pt;}
.ws27f{word-spacing:0.555514pt;}
.wsc3{word-spacing:0.580489pt;}
.ws284{word-spacing:0.600678pt;}
.ws286{word-spacing:0.618743pt;}
.ws2bb{word-spacing:0.623260pt;}
.ws2ba{word-spacing:0.645841pt;}
.ws96{word-spacing:0.691539pt;}
.ws18b{word-spacing:0.706683pt;}
.ws5b{word-spacing:0.745550pt;}
.ws141{word-spacing:0.777351pt;}
.ws5a{word-spacing:0.789213pt;}
.wsdb{word-spacing:0.827828pt;}
.ws2da{word-spacing:0.831013pt;}
.ws2bc{word-spacing:0.844562pt;}
.ws25a{word-spacing:0.883353pt;}
.ws276{word-spacing:0.916824pt;}
.ws1d9{word-spacing:0.918687pt;}
.ws27{word-spacing:0.939409pt;}
.ws8{word-spacing:0.956412pt;}
.ws2d3{word-spacing:0.966504pt;}
.ws18{word-spacing:1.011671pt;}
.ws279{word-spacing:1.083930pt;}
.wsa4{word-spacing:1.090310pt;}
.wsa5{word-spacing:1.105454pt;}
.ws1d2{word-spacing:1.110501pt;}
.ws267{word-spacing:1.111028pt;}
.wsde{word-spacing:1.150883pt;}
.ws294{word-spacing:1.219421pt;}
.ws2ee{word-spacing:1.223937pt;}
.wsfc{word-spacing:1.226599pt;}
.ws61{word-spacing:1.237098pt;}
.wsa2{word-spacing:1.302315pt;}
.ws160{word-spacing:1.307363pt;}
.ws292{word-spacing:1.345879pt;}
.wsd{word-spacing:1.364481pt;}
.ws219{word-spacing:1.382069pt;}
.ws20e{word-spacing:1.428509pt;}
.ws213{word-spacing:1.437594pt;}
.ws20f{word-spacing:1.489081pt;}
.wsd6{word-spacing:1.524415pt;}
.ws20d{word-spacing:1.578931pt;}
.ws217{word-spacing:1.602151pt;}
.wsd5{word-spacing:1.605179pt;}
.ws2cd{word-spacing:1.639444pt;}
.ws283{word-spacing:1.662025pt;}
.ws210{word-spacing:1.665752pt;}
.ws212{word-spacing:1.696038pt;}
.ws282{word-spacing:1.770418pt;}
.ws1da{word-spacing:1.807089pt;}
.wse5{word-spacing:1.827279pt;}
.ws26{word-spacing:1.861815pt;}
.ws299{word-spacing:1.874295pt;}
.ws2b0{word-spacing:1.883328pt;}
.ws1ce{word-spacing:1.908043pt;}
.ws265{word-spacing:1.918139pt;}
.ws7d{word-spacing:1.938330pt;}
.ws101{word-spacing:1.953473pt;}
.ws229{word-spacing:1.963568pt;}
.ws1e2{word-spacing:2.059475pt;}
.wsda{word-spacing:2.109953pt;}
.ws124{word-spacing:2.130143pt;}
.ws2ad{word-spacing:2.140761pt;}
.ws1f2{word-spacing:2.150334pt;}
.ws2be{word-spacing:2.176892pt;}
.ws1ef{word-spacing:2.215955pt;}
.ws2ab{word-spacing:2.222056pt;}
.ws19e{word-spacing:2.241194pt;}
.ws251{word-spacing:2.321957pt;}
.ws143{word-spacing:2.332053pt;}
.ws239{word-spacing:2.347196pt;}
.ws23e{word-spacing:2.392626pt;}
.wsf0{word-spacing:2.433007pt;}
.ws245{word-spacing:2.483485pt;}
.ws233{word-spacing:2.493580pt;}
.ws23d{word-spacing:2.503676pt;}
.ws244{word-spacing:2.518819pt;}
.ws23a{word-spacing:2.554153pt;}
.ws2c4{word-spacing:2.560784pt;}
.ws1bb{word-spacing:2.594535pt;}
.ws23c{word-spacing:2.604630pt;}
.ws238{word-spacing:2.650060pt;}
.ws4b{word-spacing:2.668989pt;}
.ws2c3{word-spacing:2.709824pt;}
.ws15d{word-spacing:2.776253pt;}
.ws26e{word-spacing:2.854348pt;}
.ws2cc{word-spacing:2.899512pt;}
.ws2a2{word-spacing:2.940159pt;}
.ws2a8{word-spacing:2.944675pt;}
.ws27c{word-spacing:2.953708pt;}
.ws2c2{word-spacing:2.967257pt;}
.ws289{word-spacing:2.971774pt;}
.ws2e2{word-spacing:2.976290pt;}
.ws2c6{word-spacing:2.989839pt;}
.ws278{word-spacing:2.998872pt;}
.ws2bd{word-spacing:3.007905pt;}
.ws26c{word-spacing:3.016937pt;}
.ws281{word-spacing:3.021454pt;}
.ws26a{word-spacing:3.035003pt;}
.ws28b{word-spacing:3.039519pt;}
.ws17e{word-spacing:3.063974pt;}
.ws2d2{word-spacing:3.111781pt;}
.ws287{word-spacing:3.138879pt;}
.ws2d4{word-spacing:3.161461pt;}
.ws2a6{word-spacing:3.179527pt;}
.ws88{word-spacing:3.240645pt;}
.ws2f{word-spacing:3.284812pt;}
.ws25f{word-spacing:3.296170pt;}
.ws2e4{word-spacing:3.337600pt;}
.ws20b{word-spacing:3.360781pt;}
.wsd2{word-spacing:3.412268pt;}
.ws1fa{word-spacing:3.417315pt;}
.ws22e{word-spacing:3.427411pt;}
.ws1f9{word-spacing:3.432459pt;}
.ws4e{word-spacing:3.475364pt;}
.ws297{word-spacing:3.478872pt;}
.wse6{word-spacing:3.533413pt;}
.ws1f7{word-spacing:3.578843pt;}
.wse7{word-spacing:3.634368pt;}
.ws104{word-spacing:3.639416pt;}
.ws20c{word-spacing:3.737342pt;}
.wse8{word-spacing:3.800943pt;}
.ws1aa{word-spacing:3.881707pt;}
.ws1d6{word-spacing:3.906946pt;}
.ws1d4{word-spacing:3.927137pt;}
.ws138{word-spacing:3.938278pt;}
.ws21d{word-spacing:3.945308pt;}
.wse1{word-spacing:4.023043pt;}
.ws1e7{word-spacing:4.033139pt;}
.ws134{word-spacing:4.123998pt;}
.ws5e{word-spacing:4.130813pt;}
.ws1d7{word-spacing:4.154285pt;}
.ws1e6{word-spacing:4.245144pt;}
.ws2d5{word-spacing:4.295071pt;}
.ws256{word-spacing:4.336003pt;}
.ws1a1{word-spacing:4.482387pt;}
.ws13c{word-spacing:4.517721pt;}
.ws5f{word-spacing:4.525495pt;}
.ws2b9{word-spacing:4.529922pt;}
.ws9f{word-spacing:4.744869pt;}
.ws194{word-spacing:4.780203pt;}
.ws196{word-spacing:4.830681pt;}
.ws195{word-spacing:4.845824pt;}
.wse2{word-spacing:4.850872pt;}
.ws26f{word-spacing:4.900265pt;}
.ws1a2{word-spacing:4.921540pt;}
.ws121{word-spacing:5.138593pt;}
.ws1fd{word-spacing:5.148688pt;}
.ws2a3{word-spacing:5.202862pt;}
.ws15{word-spacing:5.202881pt;}
.ws1e3{word-spacing:5.219356pt;}
.ws29f{word-spacing:5.225444pt;}
.ws82{word-spacing:5.325359pt;}
.wsad{word-spacing:5.365741pt;}
.ws248{word-spacing:5.451552pt;}
.ws24a{word-spacing:5.491934pt;}
.ws21e{word-spacing:5.517173pt;}
.ws218{word-spacing:5.523230pt;}
.ws237{word-spacing:5.618127pt;}
.ws2df{word-spacing:5.622885pt;}
.wse9{word-spacing:5.643366pt;}
.ws2a1{word-spacing:5.794507pt;}
.ws243{word-spacing:5.835180pt;}
.ws2b6{word-spacing:5.853220pt;}
.ws242{word-spacing:5.895753pt;}
.ws81{word-spacing:5.956325pt;}
.wsae{word-spacing:5.961373pt;}
.ws191{word-spacing:5.966421pt;}
.ws2ef{word-spacing:6.056457pt;}
.ws125{word-spacing:6.107757pt;}
.ws1d3{word-spacing:6.138044pt;}
.ws206{word-spacing:6.173378pt;}
.ws204{word-spacing:6.183473pt;}
.wsfb{word-spacing:6.269285pt;}
.ws199{word-spacing:6.287164pt;}
.wsd0{word-spacing:6.345001pt;}
.ws158{word-spacing:6.349387pt;}
.ws126{word-spacing:6.355096pt;}
.ws205{word-spacing:6.360144pt;}
.ws1cd{word-spacing:6.365192pt;}
.wscd{word-spacing:6.370239pt;}
.ws64{word-spacing:6.597236pt;}
.ws102{word-spacing:6.642817pt;}
.wse4{word-spacing:6.663008pt;}
.ws93{word-spacing:6.708438pt;}
.ws184{word-spacing:6.743772pt;}
.wsaf{word-spacing:6.753867pt;}
.ws223{word-spacing:6.763963pt;}
.ws224{word-spacing:6.784154pt;}
.ws226{word-spacing:6.890156pt;}
.ws1ec{word-spacing:6.970920pt;}
.ws38{word-spacing:7.000379pt;}
.ws27d{word-spacing:7.018444pt;}
.ws1d8{word-spacing:7.051683pt;}
.ws1eb{word-spacing:7.142543pt;}
.ws1e8{word-spacing:7.162734pt;}
.wsc8{word-spacing:7.172829pt;}
.ws1e9{word-spacing:7.198068pt;}
.ws295{word-spacing:7.250947pt;}
.ws274{word-spacing:7.397820pt;}
.ws22f{word-spacing:7.455502pt;}
.wsbe{word-spacing:7.622077pt;}
.wsbb{word-spacing:7.723032pt;}
.ws27a{word-spacing:7.876555pt;}
.ws2ca{word-spacing:7.885588pt;}
.ws2c8{word-spacing:7.903653pt;}
.wse{word-spacing:7.906339pt;}
.wsbd{word-spacing:7.960275pt;}
.ws29d{word-spacing:8.423036pt;}
.ws2d6{word-spacing:8.531429pt;}
.ws1b9{word-spacing:8.636672pt;}
.ws2d8{word-spacing:8.793379pt;}
.ws7f{word-spacing:8.858772pt;}
.ws2a7{word-spacing:8.924354pt;}
.ws2c1{word-spacing:9.050812pt;}
.ws13d{word-spacing:9.065729pt;}
.ws207{word-spacing:9.096015pt;}
.ws2bf{word-spacing:9.127591pt;}
.ws25d{word-spacing:9.161636pt;}
.wsb0{word-spacing:9.297925pt;}
.ws270{word-spacing:9.339860pt;}
.ws27e{word-spacing:9.375991pt;}
.wsdd{word-spacing:9.383736pt;}
.ws272{word-spacing:9.398573pt;}
.ws2ae{word-spacing:9.461802pt;}
.ws277{word-spacing:9.583744pt;}
.ws2d9{word-spacing:9.597293pt;}
.ws275{word-spacing:9.665039pt;}
.ws280{word-spacing:9.719235pt;}
.ws47{word-spacing:9.769888pt;}
.ws20a{word-spacing:9.900624pt;}
.wsca{word-spacing:10.080323pt;}
.wsdf{word-spacing:10.383187pt;}
.ws21c{word-spacing:10.506352pt;}
.ws1a9{word-spacing:10.509381pt;}
.ws7e{word-spacing:10.559858pt;}
.ws228{word-spacing:10.595192pt;}
.ws2af{word-spacing:10.672190pt;}
.ws2b1{word-spacing:10.744452pt;}
.ws1e1{word-spacing:10.918247pt;}
.ws21f{word-spacing:11.117128pt;}
.wsb1{word-spacing:11.145395pt;}
.ws1df{word-spacing:11.236254pt;}
.wsce{word-spacing:11.412925pt;}
.ws2f3{word-spacing:11.430941pt;}
.ws2db{word-spacing:11.552883pt;}
.ws2cb{word-spacing:11.598047pt;}
.ws261{word-spacing:11.660264pt;}
.ws23f{word-spacing:11.806648pt;}
.ws1a{word-spacing:11.859509pt;}
.ws5c{word-spacing:11.951114pt;}
.ws260{word-spacing:12.023701pt;}
.ws2e7{word-spacing:12.149044pt;}
.ws103{word-spacing:12.387138pt;}
.ws298{word-spacing:12.453628pt;}
.ws28c{word-spacing:12.541969pt;}
.ws139{word-spacing:13.264588pt;}
.ws2e1{word-spacing:13.454276pt;}
.ws187{word-spacing:13.522878pt;}
.ws240{word-spacing:13.795455pt;}
.wsdc{word-spacing:14.148797pt;}
.ws2a0{word-spacing:14.226576pt;}
.ws29e{word-spacing:14.249158pt;}
.ws259{word-spacing:14.466804pt;}
.ws2e0{word-spacing:14.529173pt;}
.ws2de{word-spacing:14.574337pt;}
.ws19d{word-spacing:14.613188pt;}
.ws2ed{word-spacing:14.823912pt;}
.ws2f2{word-spacing:14.872959pt;}
.ws263{word-spacing:15.668164pt;}
.ws2c7{word-spacing:15.866020pt;}
.ws48{word-spacing:15.880371pt;}
.ws26b{word-spacing:15.902151pt;}
.ws49{word-spacing:15.980367pt;}
.ws5d{word-spacing:16.041596pt;}
.ws4a{word-spacing:16.094445pt;}
.ws21b{word-spacing:16.097575pt;}
.ws25b{word-spacing:16.389990pt;}
.ws19f{word-spacing:16.544653pt;}
.ws264{word-spacing:16.587205pt;}
.ws8f{word-spacing:16.589779pt;}
.ws241{word-spacing:16.669332pt;}
.ws24c{word-spacing:16.702697pt;}
.ws8c{word-spacing:16.708805pt;}
.ws1f1{word-spacing:16.708956pt;}
.ws1a8{word-spacing:16.728188pt;}
.ws1a6{word-spacing:16.743331pt;}
.ws8e{word-spacing:16.760494pt;}
.wsc9{word-spacing:16.848425pt;}
.ws1a7{word-spacing:16.917478pt;}
.ws8d{word-spacing:16.929694pt;}
.ws288{word-spacing:18.080849pt;}
.ws108{word-spacing:108.763173pt;}
.ws1bc{word-spacing:114.777408pt;}
.ws10d{word-spacing:115.717351pt;}
.ws107{word-spacing:131.871354pt;}
.ws110{word-spacing:138.373688pt;}
.ws106{word-spacing:185.430638pt;}
.ws105{word-spacing:185.681754pt;}
.ws16a{word-spacing:207.124833pt;}
.ws1b7{word-spacing:213.959991pt;}
.ws1b5{word-spacing:233.900119pt;}
.ws71{word-spacing:245.695867pt;}
.ws1ac{word-spacing:253.835996pt;}
.ws10a{word-spacing:299.552489pt;}
.ws116{word-spacing:322.208827pt;}
.ws14c{word-spacing:399.588934pt;}
.ws167{word-spacing:399.767464pt;}
.ws114{word-spacing:506.345766pt;}
.ws67{word-spacing:555.496842pt;}
.ws17b{word-spacing:625.650725pt;}
.ws1bf{word-spacing:632.107568pt;}
.ws176{word-spacing:645.544094pt;}
.ws1c1{word-spacing:652.043445pt;}
.ws1c0{word-spacing:652.064699pt;}
.ws169{word-spacing:661.059222pt;}
.ws119{word-spacing:685.645387pt;}
.ws28f{word-spacing:918.010355pt;}
.ws153{word-spacing:944.356958pt;}
.ws151{word-spacing:1019.552195pt;}
.ws155{word-spacing:1041.698446pt;}
.ws152{word-spacing:1063.844697pt;}
.ws150{word-spacing:1086.033456pt;}
.ws14f{word-spacing:1094.815443pt;}
.ws156{word-spacing:1101.506076pt;}
.ws115{word-spacing:1196.377896pt;}
.ws1b4{word-spacing:1346.058500pt;}
.ws1b6{word-spacing:1348.634436pt;}
.wsed{word-spacing:1526.476059pt;}
.wsec{word-spacing:1566.347813pt;}
.wsee{word-spacing:1579.184987pt;}
._4b{margin-left:-2.827114pt;}
._4a{margin-left:-1.097089pt;}
._7f{width:1.383079pt;}
._3d{width:7.536266pt;}
._3{width:8.913760pt;}
._5{width:9.933933pt;}
._1{width:10.958356pt;}
._2{width:11.914768pt;}
._0{width:13.203607pt;}
._b{width:14.426927pt;}
._6{width:16.194390pt;}
._9{width:17.574946pt;}
._a{width:18.487323pt;}
._13{width:20.105122pt;}
._4{width:21.929464pt;}
._15{width:23.401292pt;}
._7{width:24.549651pt;}
._16{width:25.546578pt;}
._84{width:26.464552pt;}
._49{width:27.585863pt;}
._14{width:28.994180pt;}
._80{width:29.907820pt;}
._8{width:31.537430pt;}
._81{width:32.452626pt;}
._e{width:40.976941pt;}
._d{width:43.187315pt;}
._f{width:45.397690pt;}
._3f{width:98.718721pt;}
._2a{width:104.057626pt;}
._2b{width:108.899196pt;}
._48{width:118.306039pt;}
._4d{width:129.850995pt;}
._6b{width:132.852304pt;}
._41{width:142.955964pt;}
._1b{width:145.268356pt;}
._19{width:150.730531pt;}
._1a{width:156.056683pt;}
._45{width:167.431610pt;}
._25{width:228.080883pt;}
._11{width:234.486718pt;}
._24{width:238.206098pt;}
._40{width:254.397091pt;}
._59{width:265.117406pt;}
._47{width:275.965244pt;}
._10{width:283.693053pt;}
._2d{width:285.873672pt;}
._42{width:293.712000pt;}
._64{width:302.268699pt;}
._c{width:362.875465pt;}
._82{width:381.163046pt;}
._83{width:384.094329pt;}
._58{width:389.931298pt;}
._2f{width:410.662059pt;}
._6d{width:424.804205pt;}
._39{width:450.567819pt;}
._3b{width:457.402976pt;}
._1c{width:493.784889pt;}
._12{width:498.031358pt;}
._5b{width:509.941876pt;}
._3e{width:525.971341pt;}
._2e{width:531.021196pt;}
._7a{width:559.020689pt;}
._32{width:572.231926pt;}
._6a{width:584.278467pt;}
._5a{width:594.327169pt;}
._5c{width:600.044387pt;}
._36{width:607.993234pt;}
._68{width:614.730625pt;}
._78{width:623.359587pt;}
._76{width:630.101228pt;}
._43{width:636.702597pt;}
._44{width:645.544094pt;}
._46{width:656.595966pt;}
._6f{width:663.779683pt;}
._28{width:667.125000pt;}
._7e{width:672.136599pt;}
._66{width:682.172548pt;}
._57{width:692.506049pt;}
._50{width:702.631264pt;}
._4f{width:707.434577pt;}
._77{width:711.842574pt;}
._71{width:725.291852pt;}
._6c{width:726.256766pt;}
._74{width:729.610584pt;}
._73{width:731.778451pt;}
._69{width:736.679531pt;}
._3a{width:747.110798pt;}
._75{width:756.135076pt;}
._23{width:759.918217pt;}
._61{width:764.802295pt;}
._6e{width:773.860579pt;}
._55{width:777.817999pt;}
._70{width:782.702076pt;}
._1d{width:791.671096pt;}
._72{width:793.881470pt;}
._63{width:802.948256pt;}
._7b{width:804.912088pt;}
._29{width:807.832333pt;}
._1e{width:814.888528pt;}
._79{width:818.216842pt;}
._67{width:822.501568pt;}
._34{width:837.978439pt;}
._7d{width:840.320586pt;}
._65{width:842.641479pt;}
._21{width:847.750845pt;}
._56{width:857.667774pt;}
._38{width:873.586721pt;}
._2c{width:877.161576pt;}
._3c{width:891.129442pt;}
._7c{width:895.664960pt;}
._18{width:900.166473pt;}
._51{width:912.616832pt;}
._35{width:926.571946pt;}
._31{width:930.916181pt;}
._60{width:936.442117pt;}
._37{width:953.177202pt;}
._5d{width:963.786999pt;}
._53{width:967.752921pt;}
._62{width:972.896292pt;}
._30{width:975.365960pt;}
._33{width:1021.745566pt;}
._4e{width:1034.710262pt;}
._54{width:1038.633677pt;}
._5e{width:1045.043763pt;}
._26{width:1054.199814pt;}
._5f{width:1056.257162pt;}
._1f{width:1097.599665pt;}
._4c{width:1106.500672pt;}
._22{width:1128.519402pt;}
._52{width:1146.644472pt;}
._27{width:1177.504699pt;}
._20{width:1354.542937pt;}
._17{width:1390.423264pt;}
.fsf{font-size:27.895467pt;}
.fse{font-size:34.537067pt;}
.fs11{font-size:35.873600pt;}
.fs15{font-size:36.368000pt;}
.fs4{font-size:37.333333pt;}
.fs16{font-size:40.489600pt;}
.fs14{font-size:42.195733pt;}
.fs9{font-size:42.507200pt;}
.fs13{font-size:42.613333pt;}
.fs18{font-size:44.314667pt;}
.fs1a{font-size:44.894400pt;}
.fs19{font-size:45.113600pt;}
.fsd{font-size:45.163733pt;}
.fs8{font-size:47.819733pt;}
.fs10{font-size:48.000000pt;}
.fs12{font-size:48.091733pt;}
.fs17{font-size:49.036800pt;}
.fs1b{font-size:49.107200pt;}
.fsa{font-size:50.477333pt;}
.fsb{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs7{font-size:55.789867pt;}
.fs1{font-size:56.000000pt;}
.fsc{font-size:63.760533pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:66.416533pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:114.238400pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:3.931600pt;}
.y133{bottom:3.938800pt;}
.y26e{bottom:4.022133pt;}
.y1d5{bottom:21.918667pt;}
.ye3{bottom:28.078133pt;}
.y146{bottom:32.340067pt;}
.y1c1{bottom:36.323212pt;}
.y26d{bottom:37.125067pt;}
.y26c{bottom:37.640667pt;}
.y26a{bottom:42.976533pt;}
.y145{bottom:43.366267pt;}
.ye0{bottom:50.199200pt;}
.y13f{bottom:50.717067pt;}
.y18d{bottom:53.371113pt;}
.y1ae{bottom:53.498000pt;}
.y1c2{bottom:53.898048pt;}
.y144{bottom:54.392467pt;}
.y5{bottom:59.133337pt;}
.y13e{bottom:61.743267pt;}
.y18c{bottom:64.289259pt;}
.y143{bottom:65.418667pt;}
.y1af{bottom:67.254196pt;}
.y1c3{bottom:67.599692pt;}
.y269{bottom:73.501877pt;}
.ye2{bottom:74.297291pt;}
.y13d{bottom:74.633800pt;}
.y142{bottom:76.444867pt;}
.y18b{bottom:77.053468pt;}
.y1b0{bottom:80.955840pt;}
.y1c4{bottom:81.355888pt;}
.y13c{bottom:85.660000pt;}
.y4{bottom:86.333337pt;}
.y141{bottom:87.471067pt;}
.y18a{bottom:87.971614pt;}
.y56{bottom:91.842554pt;}
.y266{bottom:91.842796pt;}
.y64{bottom:91.844301pt;}
.y2c2{bottom:91.844421pt;}
.y248{bottom:91.850282pt;}
.y132{bottom:91.918133pt;}
.y1b1{bottom:94.712036pt;}
.y1c5{bottom:95.112084pt;}
.y13b{bottom:96.686200pt;}
.y1ac{bottom:96.757338pt;}
.y20f{bottom:98.121181pt;}
.ye1{bottom:98.449192pt;}
.y140{bottom:98.497267pt;}
.y63{bottom:99.856576pt;}
.y2a1{bottom:100.688609pt;}
.yda{bottom:101.217060pt;}
.y91{bottom:101.217130pt;}
.yf5{bottom:101.219028pt;}
.y16e{bottom:101.219407pt;}
.ydd{bottom:101.821725pt;}
.y94{bottom:101.821795pt;}
.y171{bottom:101.824072pt;}
.yfd{bottom:101.824387pt;}
.y189{bottom:103.109333pt;}
.y268{bottom:103.291733pt;}
.y55{bottom:104.465817pt;}
.y111{bottom:104.466522pt;}
.y265{bottom:104.467188pt;}
.y2c1{bottom:104.468813pt;}
.y247{bottom:105.835027pt;}
.y62{bottom:107.793534pt;}
.y1b2{bottom:108.468232pt;}
.ybc{bottom:108.480039pt;}
.y1c6{bottom:108.868280pt;}
.y13a{bottom:109.523467pt;}
.y1ab{bottom:110.740821pt;}
.y20e{bottom:112.105926pt;}
.y19b{bottom:112.329422pt;}
.ydc{bottom:113.085070pt;}
.y93{bottom:113.085140pt;}
.yfc{bottom:113.086669pt;}
.y170{bottom:113.087417pt;}
.y2a0{bottom:113.311872pt;}
.y22a{bottom:114.678656pt;}
.y110{bottom:115.805317pt;}
.yd9{bottom:115.805531pt;}
.y61{bottom:115.805809pt;}
.y90{bottom:115.806664pt;}
.yf4{bottom:115.807499pt;}
.y16d{bottom:115.808941pt;}
.y54{bottom:117.090210pt;}
.y2c0{bottom:117.092077pt;}
.y246{bottom:119.742794pt;}
.y139{bottom:120.549667pt;}
.y264{bottom:121.777318pt;}
.y1b3{bottom:122.169876pt;}
.ybb{bottom:122.464784pt;}
.y1c7{bottom:122.569924pt;}
.y60{bottom:123.742767pt;}
.y21{bottom:123.790666pt;}
.ydb{bottom:124.422803pt;}
.y92{bottom:124.423936pt;}
.yfb{bottom:124.425465pt;}
.y16f{bottom:124.426213pt;}
.y1aa{bottom:124.649850pt;}
.y20d{bottom:126.013693pt;}
.y19a{bottom:126.238451pt;}
.y10f{bottom:127.067600pt;}
.yd8{bottom:127.748992pt;}
.y8f{bottom:127.749062pt;}
.yf3{bottom:127.750959pt;}
.y16c{bottom:127.751339pt;}
.y229{bottom:128.663401pt;}
.y53{bottom:129.713473pt;}
.y29f{bottom:130.623131pt;}
.y138{bottom:131.575867pt;}
.y5f{bottom:131.679725pt;}
.y245{bottom:133.727539pt;}
.y263{bottom:134.400582pt;}
.yfa{bottom:135.687747pt;}
.y1b4{bottom:135.926072pt;}
.y1c8{bottom:136.326120pt;}
.yba{bottom:136.372552pt;}
.y1a9{bottom:138.633333pt;}
.y5e{bottom:139.692000pt;}
.yd7{bottom:139.692452pt;}
.y8e{bottom:139.692522pt;}
.yf2{bottom:139.694420pt;}
.y16b{bottom:139.694799pt;}
.y20c{bottom:139.998439pt;}
.y199{bottom:140.221935pt;}
.y52{bottom:142.336737pt;}
.y228{bottom:142.571168pt;}
.y137{bottom:142.602067pt;}
.y29e{bottom:143.246395pt;}
.yf9{bottom:147.026543pt;}
.y244{bottom:147.636569pt;}
.y1b5{bottom:149.682268pt;}
.y1d6{bottom:149.752000pt;}
.y1c9{bottom:150.082316pt;}
.yb9{bottom:150.357297pt;}
.y262{bottom:151.635062pt;}
.y8d{bottom:151.711433pt;}
.yf1{bottom:151.713330pt;}
.y16a{bottom:151.713710pt;}
.y136{bottom:153.628267pt;}
.y20b{bottom:153.907468pt;}
.y198{bottom:154.130964pt;}
.y51{bottom:154.960000pt;}
.y227{bottom:156.555913pt;}
.y29d{bottom:160.480875pt;}
.y243{bottom:161.620052pt;}
.yd6{bottom:161.990667pt;}
.y1b6{bottom:163.383912pt;}
.y8c{bottom:163.654893pt;}
.yf0{bottom:163.655728pt;}
.y169{bottom:163.657171pt;}
.y1ca{bottom:163.783960pt;}
.y261{bottom:164.258326pt;}
.yb8{bottom:164.266326pt;}
.y20a{bottom:167.890951pt;}
.y226{bottom:170.463681pt;}
.y29c{bottom:173.104139pt;}
.y18{bottom:175.052000pt;}
.y26b{bottom:175.337200pt;}
.y242{bottom:175.529081pt;}
.y8b{bottom:175.597291pt;}
.yef{bottom:175.599189pt;}
.y168{bottom:175.600631pt;}
.y135{bottom:176.532333pt;}
.y260{bottom:176.882718pt;}
.y1b7{bottom:177.140108pt;}
.y1cb{bottom:177.540156pt;}
.yb7{bottom:178.249809pt;}
.y209{bottom:181.799980pt;}
.y225{bottom:184.448426pt;}
.y29b{bottom:185.728531pt;}
.y4c{bottom:186.179488pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1eb{bottom:186.409709pt;}
.y1f2{bottom:187.014731pt;}
.y197{bottom:187.163331pt;}
.y8a{bottom:187.540752pt;}
.yee{bottom:187.542649pt;}
.y167{bottom:187.543029pt;}
.y134{bottom:187.558533pt;}
.y241{bottom:189.512564pt;}
.y1b8{bottom:190.896304pt;}
.y1cc{bottom:191.296352pt;}
.yb6{bottom:192.158839pt;}
.y25f{bottom:194.117199pt;}
.y208{bottom:195.783463pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1f1{bottom:198.353527pt;}
.y224{bottom:198.356193pt;}
.y89{bottom:199.484212pt;}
.yed{bottom:199.486110pt;}
.y166{bottom:199.486489pt;}
.y4b{bottom:200.164233pt;}
.y1ea{bottom:200.998180pt;}
.y196{bottom:201.072360pt;}
.y29a{bottom:203.038661pt;}
.y240{bottom:203.421594pt;}
.y1b9{bottom:204.652500pt;}
.y1cd{bottom:204.997996pt;}
.yb5{bottom:206.142322pt;}
.y25e{bottom:206.740462pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1f0{bottom:209.616872pt;}
.y207{bottom:209.692493pt;}
.y88{bottom:211.427673pt;}
.yec{bottom:211.428508pt;}
.y165{bottom:211.429950pt;}
.y223{bottom:212.340938pt;}
.y1e9{bottom:212.941640pt;}
.y4a{bottom:214.072000pt;}
.y195{bottom:215.055843pt;}
.y299{bottom:215.661925pt;}
.y188{bottom:215.720131pt;}
.y23f{bottom:217.405077pt;}
.y1ba{bottom:218.354144pt;}
.y1ce{bottom:218.754192pt;}
.y25d{bottom:219.363726pt;}
.yb4{bottom:220.127067pt;}
.y87{bottom:223.370071pt;}
.yeb{bottom:223.371968pt;}
.y164{bottom:223.373411pt;}
.y206{bottom:223.675976pt;}
.y1e8{bottom:224.960551pt;}
.y222{bottom:226.249968pt;}
.y187{bottom:226.638277pt;}
.y10e{bottom:227.000431pt;}
.y194{bottom:228.964872pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y23e{bottom:231.314106pt;}
.yd5{bottom:231.389822pt;}
.y1bb{bottom:232.110340pt;}
.y2bf{bottom:232.366861pt;}
.y1cf{bottom:232.510388pt;}
.y298{bottom:232.896405pt;}
.yb3{bottom:234.034834pt;}
.y86{bottom:235.388981pt;}
.yea{bottom:235.390879pt;}
.y163{bottom:235.391259pt;}
.y25c{bottom:236.673856pt;}
.y1e7{bottom:236.902949pt;}
.y186{bottom:237.556423pt;}
.y205{bottom:237.585005pt;}
.y221{bottom:240.233451pt;}
.y10d{bottom:240.908198pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y193{bottom:242.948356pt;}
.y2be{bottom:244.991253pt;}
.yd4{bottom:245.297589pt;}
.y297{bottom:245.519669pt;}
.y1bc{bottom:245.866536pt;}
.y1d0{bottom:246.266584pt;}
.y85{bottom:247.332442pt;}
.ye9{bottom:247.334339pt;}
.y162{bottom:247.334719pt;}
.yb2{bottom:248.019580pt;}
.y185{bottom:248.474569pt;}
.y1e6{bottom:248.846409pt;}
.y25b{bottom:249.298248pt;}
.y204{bottom:251.568488pt;}
.y49{bottom:251.947777pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y220{bottom:254.142480pt;}
.y10c{bottom:254.892943pt;}
.y192{bottom:256.857385pt;}
.y2bd{bottom:257.614517pt;}
.y23d{bottom:259.206619pt;}
.y84{bottom:259.275903pt;}
.ye8{bottom:259.276737pt;}
.y161{bottom:259.278180pt;}
.yd3{bottom:259.282335pt;}
.y1bd{bottom:259.568180pt;}
.y1d1{bottom:259.968228pt;}
.y1e5{bottom:260.789870pt;}
.y184{bottom:261.186033pt;}
.y25a{bottom:261.921512pt;}
.y296{bottom:262.754149pt;}
.y203{bottom:265.477518pt;}
.y48{bottom:265.856133pt;}
.y10b{bottom:268.800711pt;}
.y2bc{bottom:270.237780pt;}
.ye7{bottom:271.220198pt;}
.y160{bottom:271.221640pt;}
.y183{bottom:272.104179pt;}
.y1e4{bottom:272.733330pt;}
.yd2{bottom:273.190102pt;}
.y1be{bottom:273.324376pt;}
.y1d2{bottom:273.724424pt;}
.y295{bottom:275.378542pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y259{bottom:279.155992pt;}
.y202{bottom:279.461001pt;}
.y47{bottom:280.822918pt;}
.y83{bottom:281.498667pt;}
.y2bb{bottom:282.861044pt;}
.ye6{bottom:283.163658pt;}
.y15f{bottom:283.164038pt;}
.y1e3{bottom:284.675728pt;}
.y182{bottom:284.868389pt;}
.yb1{bottom:285.814483pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1bf{bottom:287.080572pt;}
.y23c{bottom:287.099131pt;}
.yd1{bottom:287.174847pt;}
.y1d3{bottom:287.480620pt;}
.y294{bottom:288.001805pt;}
.y21f{bottom:290.727189pt;}
.y258{bottom:291.779256pt;}
.y46{bottom:292.086263pt;}
.y201{bottom:293.370030pt;}
.y191{bottom:294.728004pt;}
.ye5{bottom:295.107119pt;}
.y15e{bottom:295.107499pt;}
.y2ba{bottom:295.485436pt;}
.y181{bottom:295.786535pt;}
.y1e2{bottom:296.619189pt;}
.yb0{bottom:299.797966pt;}
.y1c0{bottom:300.782216pt;}
.yd0{bottom:301.083876pt;}
.y1d4{bottom:301.220667pt;}
.y45{bottom:303.423996pt;}
.y257{bottom:304.403648pt;}
.y293{bottom:305.311935pt;}
.y10a{bottom:305.764000pt;}
.y180{bottom:306.704681pt;}
.y15d{bottom:307.126409pt;}
.y200{bottom:307.353513pt;}
.y1e1{bottom:308.638100pt;}
.y190{bottom:308.711488pt;}
.yf{bottom:309.452000pt;}
.y21e{bottom:311.968051pt;}
.yaf{bottom:313.706995pt;}
.y44{bottom:314.687341pt;}
.ycf{bottom:315.067359pt;}
.ye4{bottom:317.405333pt;}
.y292{bottom:317.935199pt;}
.y15c{bottom:319.069870pt;}
.y1e0{bottom:320.581560pt;}
.y1ff{bottom:321.262543pt;}
.y256{bottom:321.638129pt;}
.y17f{bottom:321.842400pt;}
.y18f{bottom:322.620517pt;}
.y43{bottom:325.950687pt;}
.y109{bottom:327.004484pt;}
.yae{bottom:327.690479pt;}
.yce{bottom:328.976389pt;}
.y291{bottom:330.559591pt;}
.y15b{bottom:331.013330pt;}
.y1df{bottom:332.523958pt;}
.y21d{bottom:333.208913pt;}
.y255{bottom:334.261393pt;}
.y1fe{bottom:335.247288pt;}
.y18e{bottom:336.604000pt;}
.y42{bottom:337.288420pt;}
.y23b{bottom:338.953234pt;}
.y108{bottom:339.628876pt;}
.yad{bottom:341.599508pt;}
.y15a{bottom:342.955728pt;}
.ycd{bottom:342.959872pt;}
.ye{bottom:343.809333pt;}
.y1de{bottom:344.467418pt;}
.y2b9{bottom:345.903970pt;}
.y254{bottom:346.884656pt;}
.y290{bottom:347.794072pt;}
.y118{bottom:348.549129pt;}
.y1fd{bottom:349.230771pt;}
.y41{bottom:349.231880pt;}
.y107{bottom:352.252140pt;}
.y23a{bottom:352.937979pt;}
.y21c{bottom:354.449775pt;}
.y159{bottom:354.899189pt;}
.yac{bottom:355.582991pt;}
.y1dd{bottom:356.410879pt;}
.ycc{bottom:356.944617pt;}
.y2b8{bottom:358.527233pt;}
.y28f{bottom:360.417336pt;}
.y40{bottom:360.495225pt;}
.y82{bottom:360.874278pt;}
.y117{bottom:362.533874pt;}
.yd{bottom:362.706666pt;}
.y1fc{bottom:363.139800pt;}
.y253{bottom:364.194786pt;}
.y106{bottom:364.875403pt;}
.y158{bottom:366.842649pt;}
.y239{bottom:366.845746pt;}
.y1dc{bottom:368.354339pt;}
.yde{bottom:368.881333pt;}
.yab{bottom:369.492020pt;}
.ycb{bottom:370.852384pt;}
.y2b7{bottom:371.151626pt;}
.y3f{bottom:371.832958pt;}
.y28e{bottom:373.040599pt;}
.y81{bottom:374.859023pt;}
.y21b{bottom:375.690637pt;}
.y116{bottom:376.441642pt;}
.y252{bottom:376.819178pt;}
.y1fb{bottom:377.123283pt;}
.y105{bottom:377.498667pt;}
.y157{bottom:378.786110pt;}
.y1db{bottom:380.373250pt;}
.y238{bottom:380.830491pt;}
.yf8{bottom:381.430372pt;}
.y3e{bottom:383.096304pt;}
.yaa{bottom:383.475504pt;}
.y2b6{bottom:383.774889pt;}
.y1a4{bottom:384.382074pt;}
.yca{bottom:384.837130pt;}
.y1a8{bottom:384.986739pt;}
.y80{bottom:388.766790pt;}
.y251{bottom:389.442442pt;}
.y21a{bottom:389.674120pt;}
.y28d{bottom:390.275080pt;}
.y115{bottom:390.426387pt;}
.y156{bottom:390.803958pt;}
.y1fa{bottom:391.032313pt;}
.y1da{bottom:392.315648pt;}
.yf7{bottom:392.693717pt;}
.y3d{bottom:394.358586pt;}
.y237{bottom:394.739520pt;}
.y1a7{bottom:396.325534pt;}
.y2b5{bottom:396.398153pt;}
.ya9{bottom:397.384533pt;}
.yc9{bottom:398.744897pt;}
.y1a3{bottom:398.971608pt;}
.y155{bottom:402.747418pt;}
.y7f{bottom:402.751535pt;}
.y28c{bottom:402.899472pt;}
.yf6{bottom:403.956000pt;}
.y1d9{bottom:404.259109pt;}
.y114{bottom:404.334154pt;}
.y1f9{bottom:405.015796pt;}
.y3c{bottom:406.377497pt;}
.y250{bottom:406.676923pt;}
.y1a6{bottom:407.588880pt;}
.y1a2{bottom:410.914005pt;}
.y219{bottom:410.914982pt;}
.ya8{bottom:411.369278pt;}
.yc8{bottom:412.729642pt;}
.y154{bottom:414.690879pt;}
.y28b{bottom:415.522736pt;}
.y236{bottom:415.979120pt;}
.y1d8{bottom:416.202569pt;}
.y7e{bottom:416.660564pt;}
.y3b{bottom:417.640842pt;}
.y113{bottom:418.318899pt;}
.y1a5{bottom:418.851162pt;}
.y1f8{bottom:418.924825pt;}
.y24f{bottom:419.300186pt;}
.y1a1{bottom:422.857466pt;}
.y218{bottom:424.824011pt;}
.ya7{bottom:425.352761pt;}
.y153{bottom:426.634339pt;}
.yc7{bottom:426.637409pt;}
.y3a{bottom:428.903125pt;}
.y235{bottom:429.963866pt;}
.y7d{bottom:430.644048pt;}
.y112{bottom:432.226667pt;}
.y28a{bottom:432.832866pt;}
.y1f7{bottom:432.908308pt;}
.y2b4{bottom:434.269072pt;}
.y1a0{bottom:434.876377pt;}
.y24e{bottom:436.534667pt;}
.y1d7{bottom:438.425333pt;}
.y152{bottom:438.576737pt;}
.y217{bottom:438.807494pt;}
.ya6{bottom:439.261790pt;}
.y39{bottom:440.241921pt;}
.yc6{bottom:440.622155pt;}
.y7c{bottom:444.553077pt;}
.y289{bottom:445.456129pt;}
.y1f6{bottom:446.817338pt;}
.y19f{bottom:446.819837pt;}
.y2b3{bottom:446.892336pt;}
.yc{bottom:446.990669pt;}
.y151{bottom:450.520198pt;}
.y234{bottom:451.204727pt;}
.y38{bottom:451.505266pt;}
.y216{bottom:452.716524pt;}
.ya5{bottom:453.245274pt;}
.yc5{bottom:454.529922pt;}
.y104{bottom:454.605638pt;}
.y17e{bottom:458.007810pt;}
.y288{bottom:458.080522pt;}
.y7b{bottom:458.536560pt;}
.y19e{bottom:458.763298pt;}
.y2b2{bottom:459.516728pt;}
.y1f5{bottom:460.800821pt;}
.y150{bottom:462.539109pt;}
.y37{bottom:462.767549pt;}
.yb{bottom:462.990669pt;}
.y233{bottom:465.112495pt;}
.y215{bottom:466.700007pt;}
.ya4{bottom:467.154303pt;}
.yc4{bottom:468.514667pt;}
.y19d{bottom:470.705696pt;}
.y17d{bottom:471.991293pt;}
.y2b1{bottom:472.139992pt;}
.y7a{bottom:472.445589pt;}
.y14f{bottom:474.482569pt;}
.y1f4{bottom:474.709850pt;}
.y36{bottom:474.786459pt;}
.y287{bottom:475.315002pt;}
.ya{bottom:478.990666pt;}
.y131{bottom:480.003083pt;}
.y149{bottom:480.605588pt;}
.y214{bottom:480.609036pt;}
.y24d{bottom:480.982975pt;}
.ya3{bottom:481.137786pt;}
.yc3{bottom:482.423696pt;}
.y103{bottom:482.498150pt;}
.y19c{bottom:482.649156pt;}
.y2b0{bottom:484.763255pt;}
.y17c{bottom:485.900323pt;}
.y35{bottom:486.049805pt;}
.y79{bottom:486.429073pt;}
.y1ad{bottom:486.576000pt;}
.y286{bottom:487.938266pt;}
.y1f3{bottom:488.693333pt;}
.y148{bottom:491.944384pt;}
.y213{bottom:494.592519pt;}
.y130{bottom:494.592617pt;}
.y24c{bottom:494.892004pt;}
.y9{bottom:494.990666pt;}
.ya2{bottom:495.046815pt;}
.yc2{bottom:496.407179pt;}
.y14e{bottom:496.705333pt;}
.y34{bottom:497.312087pt;}
.y2af{bottom:497.386519pt;}
.y1ef{bottom:499.125972pt;}
.y17b{bottom:499.883806pt;}
.y78{bottom:500.338102pt;}
.y285{bottom:500.561529pt;}
.y147{bottom:503.206667pt;}
.y12f{bottom:506.611527pt;}
.y33{bottom:508.650883pt;}
.y24b{bottom:508.875488pt;}
.ya1{bottom:509.030299pt;}
.y2ae{bottom:510.010911pt;}
.yc1{bottom:510.316209pt;}
.y102{bottom:510.391925pt;}
.y1ee{bottom:510.463705pt;}
.y17a{bottom:513.792835pt;}
.y77{bottom:514.321585pt;}
.y284{bottom:517.796010pt;}
.y12e{bottom:518.553925pt;}
.y32{bottom:519.914228pt;}
.y1ed{bottom:521.727051pt;}
.y24a{bottom:522.784517pt;}
.ya0{bottom:522.939328pt;}
.yc0{bottom:524.299692pt;}
.y179{bottom:527.777580pt;}
.y76{bottom:528.230614pt;}
.y283{bottom:530.420402pt;}
.y12d{bottom:530.497386pt;}
.y31{bottom:531.856626pt;}
.y1ec{bottom:532.989333pt;}
.y249{bottom:536.768000pt;}
.y9f{bottom:536.922811pt;}
.ybf{bottom:538.208721pt;}
.y101{bottom:538.284437pt;}
.y211{bottom:540.548384pt;}
.y178{bottom:541.685347pt;}
.y75{bottom:542.214098pt;}
.y12c{bottom:542.440846pt;}
.y30{bottom:543.195422pt;}
.y282{bottom:547.730532pt;}
.y2ad{bottom:547.881831pt;}
.y9e{bottom:550.831840pt;}
.y210{bottom:551.810667pt;}
.ybe{bottom:552.192204pt;}
.y12b{bottom:554.384307pt;}
.y2f{bottom:554.458767pt;}
.y177{bottom:555.670093pt;}
.y212{bottom:556.123127pt;}
.y9d{bottom:564.815324pt;}
.y281{bottom:564.965013pt;}
.y2e{bottom:565.721050pt;}
.ybd{bottom:566.101234pt;}
.y12a{bottom:566.326705pt;}
.y176{bottom:569.577860pt;}
.y232{bottom:570.106610pt;}
.y2ac{bottom:572.977059pt;}
.y8{bottom:573.786667pt;}
.y267{bottom:575.244000pt;}
.y2d{bottom:577.059845pt;}
.y280{bottom:577.588276pt;}
.y129{bottom:578.270165pt;}
.y9c{bottom:578.724353pt;}
.y74{bottom:580.084717pt;}
.y175{bottom:583.562605pt;}
.y231{bottom:584.015639pt;}
.y2ab{bottom:585.601452pt;}
.y14d{bottom:586.056185pt;}
.y2c{bottom:588.322128pt;}
.y270{bottom:588.624384pt;}
.y27f{bottom:590.211540pt;}
.y128{bottom:590.289076pt;}
.y7{bottom:592.685334pt;}
.y9b{bottom:592.709098pt;}
.y73{bottom:593.993746pt;}
.y174{bottom:597.470372pt;}
.y230{bottom:598.000384pt;}
.y26f{bottom:599.886667pt;}
.y14c{bottom:599.965215pt;}
.y2b{bottom:600.265588pt;}
.y127{bottom:602.232537pt;}
.y2aa{bottom:602.835932pt;}
.y27e{bottom:607.522799pt;}
.y72{bottom:607.977229pt;}
.y173{bottom:611.455118pt;}
.y2a{bottom:611.604384pt;}
.y22f{bottom:611.908152pt;}
.y9a{bottom:613.948698pt;}
.y126{bottom:614.175997pt;}
.y2a9{bottom:615.459196pt;}
.y27d{bottom:620.146062pt;}
.y14b{bottom:621.281792pt;}
.y71{bottom:621.886259pt;}
.y29{bottom:622.866667pt;}
.y172{bottom:625.362885pt;}
.y22e{bottom:625.892897pt;}
.y125{bottom:626.118395pt;}
.y5d{bottom:627.326751pt;}
.y99{bottom:627.857727pt;}
.y2a8{bottom:632.693676pt;}
.y70{bottom:635.869742pt;}
.y5c{bottom:637.229391pt;}
.y27c{bottom:637.380543pt;}
.y28{bottom:637.454667pt;}
.y124{bottom:638.061855pt;}
.y22d{bottom:639.800664pt;}
.y14a{bottom:642.522654pt;}
.y2a7{bottom:645.316940pt;}
.y6{bottom:645.598667pt;}
.y5b{bottom:647.207150pt;}
.y98{bottom:649.174305pt;}
.y6f{bottom:649.778771pt;}
.y100{bottom:649.854487pt;}
.y27b{bottom:650.003806pt;}
.y123{bottom:650.005316pt;}
.y22c{bottom:653.785409pt;}
.y5a{bottom:657.184908pt;}
.y2a6{bottom:657.941333pt;}
.y122{bottom:662.024227pt;}
.y27a{bottom:662.627070pt;}
.y27{bottom:663.383708pt;}
.y6e{bottom:663.763516pt;}
.y59{bottom:667.162667pt;}
.y22b{bottom:667.693177pt;}
.y3{bottom:668.977329pt;}
.y97{bottom:670.415167pt;}
.y121{bottom:673.966625pt;}
.y2a5{bottom:675.251462pt;}
.y6d{bottom:677.671283pt;}
.yff{bottom:677.746999pt;}
.y26{bottom:678.652000pt;}
.y279{bottom:679.862680pt;}
.y120{bottom:685.910085pt;}
.y2a4{bottom:687.874726pt;}
.y6c{bottom:691.656029pt;}
.y278{bottom:692.485943pt;}
.y25{bottom:694.525333pt;}
.y50{bottom:696.566667pt;}
.y11f{bottom:697.853546pt;}
.y277{bottom:705.109207pt;}
.y6b{bottom:705.563796pt;}
.yfe{bottom:705.639512pt;}
.y11e{bottom:709.797006pt;}
.y2a3{bottom:717.732470pt;}
.y6a{bottom:719.548541pt;}
.y24{bottom:721.134533pt;}
.y11d{bottom:721.739404pt;}
.y276{bottom:722.419336pt;}
.y2a2{bottom:730.356863pt;}
.y69{bottom:733.456308pt;}
.y11c{bottom:733.758315pt;}
.y275{bottom:735.043729pt;}
.y11b{bottom:745.701775pt;}
.y68{bottom:747.441054pt;}
.y274{bottom:747.666992pt;}
.y23{bottom:749.028695pt;}
.y11a{bottom:757.645236pt;}
.y273{bottom:760.290256pt;}
.y67{bottom:761.348821pt;}
.y4f{bottom:762.255883pt;}
.y96{bottom:769.815897pt;}
.y66{bottom:775.333566pt;}
.y4e{bottom:775.559275pt;}
.y22{bottom:776.920000pt;}
.y272{bottom:777.524737pt;}
.y119{bottom:779.868000pt;}
.y2{bottom:781.661334pt;}
.y95{bottom:785.764000pt;}
.y4d{bottom:788.862667pt;}
.y65{bottom:789.241333pt;}
.y271{bottom:790.148000pt;}
.y58{bottom:836.182846pt;}
.y57{bottom:850.166667pt;}
.y1{bottom:859.312000pt;}
.h16{height:20.670541pt;}
.h1c{height:24.908330pt;}
.h23{height:25.251609pt;}
.h15{height:25.591966pt;}
.h24{height:28.113384pt;}
.h7{height:28.560000pt;}
.h21{height:29.318617pt;}
.h1f{height:29.608776pt;}
.h2f{height:30.426478pt;}
.h2e{height:31.323994pt;}
.h18{height:31.412821pt;}
.he{height:31.497835pt;}
.h2d{height:33.233925pt;}
.h1b{height:33.328125pt;}
.h14{height:33.375999pt;}
.h25{height:33.391819pt;}
.h1e{height:33.415301pt;}
.h13{height:33.466326pt;}
.h17{height:33.997259pt;}
.h2c{height:34.048012pt;}
.h30{height:34.096894pt;}
.hd{height:35.338783pt;}
.h29{height:36.289060pt;}
.h2a{height:36.293576pt;}
.hf{height:37.302749pt;}
.h10{height:37.403704pt;}
.h11{height:39.372195pt;}
.h26{height:40.280912pt;}
.h28{height:40.578728pt;}
.h6{height:40.800000pt;}
.hc{height:41.340291pt;}
.h3{height:42.840000pt;}
.h12{height:47.119034pt;}
.h19{height:47.246555pt;}
.h31{height:47.778713pt;}
.h2{height:48.960000pt;}
.hb{height:49.214651pt;}
.h27{height:53.581689pt;}
.h5{height:69.360000pt;}
.ha{height:84.422178pt;}
.h4{height:105.826671pt;}
.h1a{height:137.197333pt;}
.h1d{height:202.658667pt;}
.h2b{height:222.236000pt;}
.h22{height:310.904000pt;}
.h20{height:335.849333pt;}
.h8{height:907.086667pt;}
.h9{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:367.974667pt;}
.w6{width:384.000000pt;}
.w8{width:394.960000pt;}
.w5{width:447.949333pt;}
.w2{width:566.928019pt;}
.w4{width:657.333333pt;}
.w3{width:657.637333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5f{left:4.347098pt;}
.x2d{left:6.391333pt;}
.x3b{left:7.331333pt;}
.x52{left:8.412133pt;}
.x4f{left:13.621823pt;}
.x3c{left:15.253582pt;}
.x1d{left:26.458471pt;}
.x25{left:29.058000pt;}
.x50{left:31.080133pt;}
.x2e{left:34.676133pt;}
.x21{left:35.753200pt;}
.x47{left:39.143067pt;}
.x44{left:41.143307pt;}
.x4a{left:42.179795pt;}
.x45{left:43.689067pt;}
.x46{left:45.689307pt;}
.x4e{left:48.716943pt;}
.x48{left:50.244399pt;}
.x4d{left:52.781067pt;}
.x4c{left:54.299431pt;}
.x4b{left:56.299671pt;}
.x49{left:58.363555pt;}
.x8{left:64.251867pt;}
.x20{left:70.828400pt;}
.x61{left:73.625520pt;}
.x1e{left:80.351612pt;}
.x9{left:84.283333pt;}
.x1{left:90.706667pt;}
.x3d{left:92.785867pt;}
.x2{left:94.486667pt;}
.x3e{left:96.786347pt;}
.x1f{left:100.080678pt;}
.x2c{left:102.803200pt;}
.x6{left:109.759673pt;}
.x3a{left:110.815733pt;}
.x3f{left:112.788267pt;}
.x40{left:124.853351pt;}
.x41{left:128.853831pt;}
.x18{left:132.283333pt;}
.x5b{left:139.313068pt;}
.x1c{left:141.126956pt;}
.x22{left:142.055645pt;}
.x2f{left:145.683600pt;}
.x19{left:148.231647pt;}
.x42{left:152.920355pt;}
.x5c{left:157.605510pt;}
.x5{left:160.478667pt;}
.x5a{left:161.535883pt;}
.x7{left:164.634088pt;}
.x30{left:165.978533pt;}
.x37{left:168.112145pt;}
.xe{left:170.532000pt;}
.x31{left:173.968533pt;}
.x4{left:180.874667pt;}
.x59{left:196.533407pt;}
.x65{left:208.553588pt;}
.x66{left:210.593860pt;}
.x64{left:211.577300pt;}
.x51{left:215.042933pt;}
.xa{left:244.532752pt;}
.x38{left:254.360824pt;}
.x32{left:285.030533pt;}
.x23{left:301.451018pt;}
.x1a{left:304.929514pt;}
.x33{left:313.313600pt;}
.x5d{left:316.420391pt;}
.x1b{left:322.920687pt;}
.x60{left:326.320267pt;}
.x5e{left:347.564172pt;}
.x63{left:369.258571pt;}
.x43{left:397.431511pt;}
.x3{left:404.408000pt;}
.x24{left:407.699653pt;}
.x39{left:434.566910pt;}
.x56{left:462.307924pt;}
.x57{left:476.745704pt;}
.x62{left:486.347523pt;}
.x58{left:505.695716pt;}
.x11{left:532.912903pt;}
.x17{left:534.274406pt;}
.xc{left:539.188431pt;}
.x12{left:542.210667pt;}
.x35{left:544.857283pt;}
.x27{left:545.915713pt;}
.xb{left:548.182667pt;}
.x15{left:551.280878pt;}
.xf{left:557.404000pt;}
.x2a{left:560.882498pt;}
.x36{left:562.545592pt;}
.x53{left:568.064089pt;}
.x2b{left:570.256398pt;}
.x10{left:576.300956pt;}
.x28{left:578.646257pt;}
.x13{left:582.877375pt;}
.x26{left:586.356000pt;}
.x55{left:589.076461pt;}
.x29{left:590.134890pt;}
.x54{left:597.996597pt;}
.x14{left:599.204592pt;}
.x34{left:600.716834pt;}
.xd{left:602.305333pt;}
.x16{left:603.211078pt;}
}




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